courses.php
19 lines
| 1 | <?php |
| 2 | /** |
| 3 | * The template for displaying Tutor Course Widget |
| 4 | * |
| 5 | * @package Tutor/Tempaltes |
| 6 | * @version 1.3.1 |
| 7 | * |
| 8 | */ |
| 9 | |
| 10 | if ( have_posts() ) : |
| 11 | while ( have_posts() ) : the_post(); |
| 12 | ?> |
| 13 | <div class="<?php echo tutor_widget_course_loop_classes(); ?>"> |
| 14 | <?php tutor_load_template('loop.course'); ?> |
| 15 | </div> |
| 16 | <?php |
| 17 | endwhile; |
| 18 | endif; |
| 19 |