| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template for displaying course students within the loop. |
| 4 |
* |
| 5 |
* Do not use in LP4. |
| 6 |
* Will remove after LearnPress and Eduma and all guest update 4.0.0 |
| 7 |
* |
| 8 |
* @author ThimPress |
| 9 |
* @package Learnpress/Templates |
| 10 |
* @version 3.0.0 |
| 11 |
*/ |
| 12 |
|
| 13 |
/** |
| 14 |
* Prevent loading this file directly |
| 15 |
*/ |
| 16 |
defined( 'ABSPATH' ) || exit(); |
| 17 |
|
| 18 |
$course = learn_press_get_course(); |
| 19 |
if ( ! $course ) { |
| 20 |
return; |
| 21 |
} |
| 22 |
?> |
| 23 |
|
| 24 |
<span class="course-students"> |
| 25 |
|
| 26 |
<?php echo esc_html( $course->get_users_enrolled() ); ?> |
| 27 |
|
| 28 |
</span> |
| 29 |
|