# learnpress/4.1.7.2/templates/single-course/section/item-lesson.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.1.7.2. 20 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.1.7.2/code/templates/single-course/section/item-lesson.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.1.7.2/raw/templates/single-course/section/item-lesson.php
- Modified: 2022-09-23T02:52:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.1.7.2/code/templates/single-course/section/item-lesson.php#L10-L20`.

```php
<?php
/**
 * Template for displaying lesson item section in single course.
 *
 * This template can be overridden by copying it to yourtheme/learnpress/single-course/section/item-lesson.php.
 *
 * @author   ThimPress
 * @package  Learnpress/Templates
 * @version  4.0.0
 */

defined( 'ABSPATH' ) || exit();

if ( ! isset( $item ) ) {
	return;
}
?>

<span class="item-name"><?php echo esc_html( $item->get_title( 'display' ) ); ?></span>

```
