course-filter
1 year ago
dashboard
1 year ago
ecommerce
1 year ago
email
1 year ago
global
3 years ago
instructor
3 years ago
loop
1 year ago
modal
3 years ago
profile
3 years ago
shortcode
2 years ago
single
1 year ago
template-part
1 year ago
widget
3 years ago
archive-course-init.php
1 year ago
archive-course.php
3 years ago
course-embed.php
1 year ago
course-none.php
3 years ago
dashboard.php
1 year ago
feature_disabled.php
3 years ago
login-form.php
1 year ago
login.php
3 years ago
metabox-wrapper.php
3 years ago
permission-denied.php
3 years ago
public-profile.php
2 years ago
single-assignment.php
3 years ago
single-content-loader.php
2 years ago
single-course.php
1 year 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
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 |