enrolled
7 years ago
add-to-cart-edd.php
7 years ago
add-to-cart-woocommerce.php
7 years ago
add-to-cart.php
7 years ago
complete_form.php
7 years ago
course-benefits.php
7 years ago
course-content.php
7 years ago
course-enroll-box.php
7 years ago
course-enrolled-box.php
7 years ago
course-requirements.php
7 years ago
course-target-audience.php
7 years ago
course-topics.php
7 years ago
instructors.php
7 years ago
lead-info.php
7 years ago
login.php
7 years ago
material-includes.php
7 years ago
q_and_a_turned_off.php
7 years ago
review-form.php
7 years ago
reviews.php
7 years ago
social_share.php
7 years ago
tags.php
7 years ago
wc-price-html.php
7 years ago
course-content.php
33 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 | |
| 11 | |
| 12 | |
| 13 | do_action('tutor_course/single/before/content'); |
| 14 | |
| 15 | global $post; |
| 16 | $content = get_the_content(); |
| 17 | if ( empty($content)){ |
| 18 | return; |
| 19 | } |
| 20 | ?> |
| 21 | |
| 22 | <div class="tutor-single-course-segment tutor-course-content-wrap"> |
| 23 | <div class="course-content-title"> |
| 24 | <h4 class="tutor-segment-title"><?php _e('Description', 'tutor'); ?></h4> |
| 25 | </div> |
| 26 | |
| 27 | <div class="tutor-course-content-content"> |
| 28 | <?php echo wpautop($content); ?> |
| 29 | </div> |
| 30 | </div> |
| 31 | |
| 32 | |
| 33 | <?php do_action('tutor_course/single/after/content'); ?> |