enrolled
6 years ago
add-to-cart-edd.php
6 years ago
add-to-cart-woocommerce.php
6 years ago
add-to-cart.php
6 years ago
complete_form.php
6 years ago
course-benefits.php
6 years ago
course-content.php
6 years ago
course-enroll-box.php
6 years ago
course-enrolled-box.php
6 years ago
course-requirements.php
6 years ago
course-target-audience.php
6 years ago
course-topics.php
6 years ago
instructors.php
6 years ago
lead-info.php
6 years ago
login.php
6 years ago
material-includes.php
6 years ago
q_and_a_turned_off.php
6 years ago
review-form.php
6 years ago
reviews.php
6 years ago
social_share.php
6 years ago
tags.php
6 years ago
wc-price-html.php
6 years ago
course-content.php
42 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Template for displaying course content |
| 4 | * |
| 5 | * @since v.1.0.0 |
| 6 | * |
| 7 | * @author Themeum |
| 8 | * @url https://themeum.com |
| 9 | * |
| 10 | * @package TutorLMS/Templates |
| 11 | * @version 1.4.3 |
| 12 | */ |
| 13 | |
| 14 | |
| 15 | |
| 16 | do_action('tutor_course/single/before/content'); |
| 17 | |
| 18 | global $post; |
| 19 | ?> |
| 20 | |
| 21 | <div class="tutor-single-course-segment tutor-course-content-wrap"> |
| 22 | <?php |
| 23 | if ( ! empty(get_the_content())){ |
| 24 | ?> |
| 25 | <div class="course-content-title"> |
| 26 | <h4 class="tutor-segment-title"><?php _e('Description', 'tutor'); ?></h4> |
| 27 | </div> |
| 28 | <?php |
| 29 | } |
| 30 | ?> |
| 31 | |
| 32 | |
| 33 | <div class="tutor-course-content-content"> |
| 34 | <?php |
| 35 | the_content(); |
| 36 | //echo wpautop($content); |
| 37 | ?> |
| 38 | </div> |
| 39 | </div> |
| 40 | |
| 41 | |
| 42 | <?php do_action('tutor_course/single/after/content'); ?> |