add-to-cart-edd.php
3 years 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
3 years ago
course-price-edd.php
3 years ago
course-price-tutor.php
1 year ago
course-price-woocommerce.php
1 year ago
course-price.php
1 year ago
course.php
3 years ago
end_content_wrap.php
3 years ago
enrolled-course-progress.php
3 years ago
footer.php
3 years 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
loop-start.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Course Loop Start |
| 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 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit; |
| 14 | } |
| 15 | |
| 16 | $course_archive_arg = isset( $GLOBALS['tutor_course_archive_arg'] ) ? $GLOBALS['tutor_course_archive_arg']['column_per_row'] : null; |
| 17 | $columns = $course_archive_arg === null ? tutor_utils()->get_option( 'courses_col_per_row', 3 ) : $course_archive_arg; |
| 18 | ?> |
| 19 | <div class="tutor-course-list tutor-grid tutor-grid-<?php echo esc_attr( $columns ); ?>"> |
| 20 |