announcements
3 years ago
assignments
3 years ago
elements
3 years ago
enrolled-courses
4 years ago
instructor
3 years ago
my-courses
4 years ago
my-quiz-attempts
3 years ago
notifications
4 years ago
question-answer
4 years ago
quiz-attempts
4 years ago
reviews
4 years ago
settings
3 years ago
withdraw-method-fields
4 years ago
announcements.php
4 years ago
assignments.php
3 years ago
create-course.php
3 years ago
dashboard.php
3 years ago
enrolled-courses.php
4 years ago
index.php
4 years ago
logged-in.php
4 years ago
my-courses.php
3 years ago
my-profile.php
3 years ago
my-quiz-attempts.php
3 years ago
purchase_history.php
3 years ago
question-answer.php
4 years ago
quiz-attempts.php
3 years ago
registration.php
3 years ago
reviews.php
3 years ago
settings.php
4 years ago
wishlist.php
3 years ago
withdraw.php
3 years ago
create-course.php
29 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Frontend course create template |
| 4 | * |
| 5 | * @package TutorLMS/Templates |
| 6 | * @version 1.4.3 |
| 7 | */ |
| 8 | |
| 9 | if ( ! defined( 'ABSPATH' ) ) { |
| 10 | exit; |
| 11 | } |
| 12 | |
| 13 | use TUTOR\Input; |
| 14 | |
| 15 | get_tutor_header( true ); |
| 16 | |
| 17 | do_action( 'tutor_load_template_before', 'dashboard.create-course', null ); |
| 18 | |
| 19 | $course_id = Input::get( 'course_ID', 0, Input::TYPE_INT ); |
| 20 | $post = get_post( $course_id ); |
| 21 | |
| 22 | setup_postdata( $post ); |
| 23 | |
| 24 | do_action( 'tutor_frontend_course_builder' ); |
| 25 | |
| 26 | do_action( 'tutor_load_template_after', 'dashboard.create-course', null ); |
| 27 | |
| 28 | get_tutor_footer( true ); |
| 29 |