course-filter
4 years ago
dashboard
4 years ago
email
4 years ago
global
4 years ago
instructor
4 years ago
loop
4 years ago
modal
4 years ago
profile
4 years ago
shortcode
4 years ago
single
4 years ago
template-part
4 years ago
widget
4 years ago
archive-course-init.php
4 years ago
archive-course.php
4 years ago
course-none.php
4 years ago
dashboard.php
4 years ago
feature_disabled.php
4 years ago
instructor-setting.php
4 years ago
login-form.php
4 years ago
login.php
4 years ago
permission-denied.php
4 years ago
public-profile.php
4 years ago
single-assignment.php
4 years ago
single-content-loader.php
4 years ago
single-course.php
4 years ago
single-lesson.php
4 years ago
single-preview-lesson.php
4 years ago
single-quiz.php
4 years ago
template.php
4 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 | tutor_utils()->tutor_custom_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 | tutor_utils()->tutor_custom_footer(); |
| 25 |