dashboard
7 years ago
email
7 years ago
global
7 years ago
loop
7 years ago
profile
7 years ago
single
7 years ago
archive-course.php
7 years ago
course-none.php
7 years ago
dashboard.php
7 years ago
login.php
7 years ago
single-course-enrolled-announcements.php
7 years ago
single-course-enrolled-overview.php
7 years ago
single-course-enrolled-questions.php
7 years ago
single-course-enrolled.php
7 years ago
single-course.php
7 years ago
single-lesson.php
7 years ago
single-preview-lesson.php
7 years ago
single-quiz.php
7 years ago
student-public-profile.php
7 years ago
single-lesson.php
31 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 | |
| 11 | get_header(); |
| 12 | |
| 13 | global $post; |
| 14 | $currentPost = $post; |
| 15 | ?> |
| 16 | |
| 17 | <?php do_action('tutor_lesson/single/before/wrap'); ?> |
| 18 | <div class="tutor-single-lesson-wrap "> |
| 19 | |
| 20 | <div class="tutor-lesson-sidebar"> |
| 21 | <?php tutor_lessons_sidebar(); ?> |
| 22 | </div> |
| 23 | |
| 24 | <div id="tutor-single-entry-content" class="tutor-lesson-content tutor-single-entry-content tutor-single-entry-content-<?php the_ID(); ?>"> |
| 25 | <?php tutor_lesson_content(); ?> |
| 26 | </div> |
| 27 | |
| 28 | </div> |
| 29 | <?php do_action('tutor_lesson/single/after/wrap'); |
| 30 | |
| 31 | get_footer(); |