# learnpress/4.1.7.1/templates/global/block-content.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.1.7.1. 18 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.1.7.1/code/templates/global/block-content.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.1.7.1/raw/templates/global/block-content.php
- Modified: 2022-09-15T05:24:36+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.1/code/templates/global/block-content.php#L10-L20`.

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

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

<div class="learn-press-content-protected-message content-item-block">
	<?php esc_html_e( 'Content of this item has blocked because the course has exceeded duration.', 'learnpress' ); ?>
</div>

```
