comment-card.php
1 day ago
comment-form.php
1 day ago
comment-list.php
1 day ago
comment-replies.php
1 day ago
comments.php
1 day ago
content.php
1 day ago
exercise-files.php
1 day ago
footer.php
1 day ago
nav-item.php
1 day ago
overview.php
1 day ago
overview.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Lesson overview template. |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @subpackage Single\Lesson |
| 7 | * @author Themeum <support@themeum.com> |
| 8 | * @link https://themeum.com |
| 9 | * @since 4.0.0 |
| 10 | */ |
| 11 | |
| 12 | defined( 'ABSPATH' ) || exit; |
| 13 | |
| 14 | global $tutor_course_id; |
| 15 | |
| 16 | ?> |
| 17 | <div x-show="activeTab === 'overview'" x-cloak class="tutor-tab-panel tutor-p-6 tutor-sm-p-5" role="tabpanel"> |
| 18 | <?php do_action( 'tutor_lesson_before_the_content', $post, $tutor_course_id ); ?> |
| 19 | <div class="tutor-lesson-wrapper"> |
| 20 | <?php the_content(); ?> |
| 21 | </div> |
| 22 | </div> |
| 23 |