dashboard
6 years ago
email
6 years ago
global
6 years ago
loop
6 years ago
profile
6 years ago
shortcode
6 years ago
single
6 years ago
template-part
6 years ago
widget
6 years ago
archive-course.php
6 years ago
course-none.php
6 years ago
dashboard.php
6 years ago
login.php
6 years ago
single-assignment.php
6 years ago
single-course-enrolled-announcements.php
6 years ago
single-course-enrolled-overview.php
6 years ago
single-course-enrolled-questions.php
6 years ago
single-course-enrolled-subpage.php
6 years ago
single-course-enrolled.php
6 years ago
single-course.php
6 years ago
single-lesson.php
6 years ago
single-preview-lesson.php
6 years ago
single-quiz.php
6 years ago
student-public-profile.php
6 years ago
template.php
6 years ago
single-preview-lesson.php
33 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Template for displaying single lesson |
| 4 | * |
| 5 | * @since v.1.0.0 |
| 6 | * |
| 7 | * @author Themeum |
| 8 | * @url https://themeum.com |
| 9 | * |
| 10 | * @package TutorLMS/Templates |
| 11 | * @version 1.4.3 |
| 12 | */ |
| 13 | |
| 14 | get_header(); |
| 15 | |
| 16 | global $post; |
| 17 | $currentPost = $post; |
| 18 | ?> |
| 19 | <?php do_action('tutor_lesson/single/before/wrap'); ?> |
| 20 | <div <?php tutor_post_class('tutor-single-lesson-wrap tutor-page-wrap'); ?>> |
| 21 | <div class="tutor-container"> |
| 22 | <div class="tutor-row"> |
| 23 | <div class="tutor-col-12"> |
| 24 | <?php tutor_lesson_video(); ?> |
| 25 | <?php the_content(); ?> |
| 26 | <?php get_tutor_posts_attachments(); ?> |
| 27 | </div> |
| 28 | </div> |
| 29 | </div> |
| 30 | </div> |
| 31 | <?php do_action('tutor_lesson/single/after/wrap'); |
| 32 | |
| 33 | get_footer(); |