course-filter
5 years ago
dashboard
5 years ago
email
5 years ago
global
5 years ago
loop
5 years ago
profile
5 years ago
shortcode
5 years ago
single
5 years ago
template-part
5 years ago
widget
5 years ago
archive-course-init.php
5 years ago
archive-course.php
5 years ago
course-none.php
5 years ago
dashboard.php
5 years ago
login.php
5 years ago
single-assignment.php
5 years ago
single-course-enrolled-announcements.php
5 years ago
single-course-enrolled-overview.php
5 years ago
single-course-enrolled-questions.php
5 years ago
single-course-enrolled-subpage.php
5 years ago
single-course-enrolled.php
5 years ago
single-course-instructor.php
5 years ago
single-course.php
5 years ago
single-lesson.php
5 years ago
single-preview-lesson.php
5 years ago
single-quiz.php
5 years ago
student-public-profile.php
5 years ago
template.php
5 years ago
template.php
25 lines
| 1 | |
| 2 | <?php |
| 3 | /** |
| 4 | * Main template |
| 5 | * |
| 6 | * @since v.1.4.3 |
| 7 | * |
| 8 | * @author Themeum |
| 9 | * @url https://themeum.com |
| 10 | * |
| 11 | * @package TutorLMS/Templates |
| 12 | * @version 1.4.3 |
| 13 | */ |
| 14 | |
| 15 | get_header(); |
| 16 | |
| 17 | |
| 18 | if ( ! empty($template_part_name)){ |
| 19 | tutor_load_template($template_part_name); |
| 20 | }elseif ( ! empty($template)){ |
| 21 | tutor_load_template($template); |
| 22 | } |
| 23 | |
| 24 | get_footer(); |
| 25 |