add-to-cart-edd.php
1 year ago
add-to-cart-tutor.php
1 year ago
add-to-cart-woocommerce.php
1 year ago
course-author.php
3 years ago
course-continue.php
2 years ago
course-in-cart.php
1 year ago
course-price-edd.php
1 year ago
course-price-tutor.php
1 year ago
course-price-woocommerce.php
1 year ago
course-price.php
1 year ago
course.php
1 year ago
end_content_wrap.php
3 years ago
enrolled-course-progress.php
3 years ago
footer.php
1 year ago
header.php
3 years ago
loop-after-content.php
3 years ago
loop-before-content.php
3 years ago
loop-end.php
3 years ago
loop-start.php
3 years ago
meta.php
3 years ago
rating.php
3 years ago
start_content_wrap.php
3 years ago
thumbnail.php
3 years ago
title.php
3 years ago
thumbnail.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Display loop thumbnail |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @subpackage CourseLoopPart |
| 7 | * @author Themeum <support@themeum.com> |
| 8 | * @link https://themeum.com |
| 9 | * @since 1.4.3 |
| 10 | */ |
| 11 | |
| 12 | $tutor_course_img = get_tutor_course_thumbnail_src(); |
| 13 | ?> |
| 14 | <div class="tutor-course-thumbnail"> |
| 15 | <a href="<?php the_permalink(); ?>" class="tutor-d-block"> |
| 16 | <div class="tutor-ratio tutor-ratio-16x9"> |
| 17 | <img class="tutor-card-image-top" src="<?php echo esc_url( $tutor_course_img ); ?>" alt="<?php the_title(); ?>" loading="lazy"> |
| 18 | </div> |
| 19 | </a> |
| 20 | <?php do_action( 'tutor_after_course_loop_thumbnail_link', get_the_ID() ); ?> |
| 21 | </div> |
| 22 |