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

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

- Page: https://pluginprobe.com/plugins/learnpress/4.3.7/code/templates/global/block-content.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.3.7/raw/templates/global/block-content.php
- Modified: 2026-05-23T18:20:54+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.3.7/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( 'The content of this item has been blocked because the course has exceeded its duration.', 'learnpress' ); ?>
</div>

```
