course-filter
3 months ago
dashboard
1 week ago
ecommerce
1 week ago
email
3 weeks ago
global
1 month ago
instructor
3 years ago
learning-area
5 days ago
loop
3 weeks ago
modal
3 months ago
profile
3 years ago
shared
1 week ago
shortcode
3 months ago
single
5 days ago
template-part
3 weeks ago
widget
3 years ago
account-header.php
3 weeks ago
account.php
3 weeks ago
archive-course-init.php
10 months ago
archive-course.php
3 years ago
course-embed.php
3 months ago
course-none.php
3 years ago
dashboard-isolated.php
3 weeks ago
dashboard.php
3 weeks ago
feature_disabled.php
3 years ago
login-form-legacy.php
3 weeks ago
login-form.php
3 weeks ago
login.php
3 weeks ago
permission-denied.php
3 weeks ago
public-profile.php
3 weeks ago
single-assignment.php
3 years ago
single-content-loader.php
3 months ago
single-course.php
3 weeks ago
single-lesson.php
3 years ago
single-preview-lesson.php
3 years ago
single-quiz.php
1 year ago
template.php
3 years ago
user-profile.php
3 weeks ago
template.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Main template |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @author Themeum <support@themeum.com> |
| 7 | * @link https://themeum.com |
| 8 | * @since 1.4.3 |
| 9 | */ |
| 10 | |
| 11 | tutor_utils()->tutor_custom_header(); |
| 12 | |
| 13 | if ( ! empty( $template_part_name ) ) { |
| 14 | tutor_load_template( $template_part_name ); |
| 15 | } elseif ( ! empty( $template ) ) { |
| 16 | tutor_load_template( $template ); |
| 17 | } |
| 18 | |
| 19 | tutor_utils()->tutor_custom_footer(); |
| 20 |