add-to-cart-edd.php
7 years ago
add-to-cart-woocommerce.php
7 years ago
course-author.php
7 years ago
course-price-edd.php
7 years ago
course-price-woocommerce.php
7 years ago
course-price.php
7 years ago
course.php
7 years ago
end_content_wrap.php
7 years ago
footer.php
7 years ago
header.php
7 years ago
loop-after-content.php
7 years ago
loop-before-content.php
7 years ago
loop-end.php
7 years ago
loop-start.php
7 years ago
meta.php
7 years ago
rating.php
7 years ago
start_content_wrap.php
7 years ago
thumbnail.php
7 years ago
title.php
7 years ago
tutor-pagination.php
7 years ago
course.php
50 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * A single course loop |
| 5 | * |
| 6 | * @since v.1.0.0 |
| 7 | * @author themeum |
| 8 | * @url https://themeum.com |
| 9 | */ |
| 10 | |
| 11 | |
| 12 | do_action('tutor_course/loop/before_content'); |
| 13 | |
| 14 | do_action('tutor_course/loop/badge'); |
| 15 | |
| 16 | |
| 17 | do_action('tutor_course/loop/before_header'); |
| 18 | do_action('tutor_course/loop/header'); |
| 19 | do_action('tutor_course/loop/after_header'); |
| 20 | |
| 21 | |
| 22 | do_action('tutor_course/loop/start_content_wrap'); |
| 23 | |
| 24 | do_action('tutor_course/loop/before_rating'); |
| 25 | do_action('tutor_course/loop/rating'); |
| 26 | do_action('tutor_course/loop/after_rating'); |
| 27 | |
| 28 | do_action('tutor_course/loop/before_title'); |
| 29 | do_action('tutor_course/loop/title'); |
| 30 | do_action('tutor_course/loop/after_title'); |
| 31 | |
| 32 | |
| 33 | do_action('tutor_course/loop/before_meta'); |
| 34 | do_action('tutor_course/loop/meta'); |
| 35 | do_action('tutor_course/loop/after_meta'); |
| 36 | |
| 37 | |
| 38 | do_action('tutor_course/loop/before_excerpt'); |
| 39 | do_action('tutor_course/loop/excerpt'); |
| 40 | do_action('tutor_course/loop/after_excerpt'); |
| 41 | |
| 42 | do_action('tutor_course/loop/end_content_wrap'); |
| 43 | |
| 44 | do_action('tutor_course/loop/before_footer'); |
| 45 | do_action('tutor_course/loop/footer'); |
| 46 | do_action('tutor_course/loop/after_footer'); |
| 47 | |
| 48 | do_action('tutor_course/loop/after_content'); |
| 49 | |
| 50 | ?> |