class-yatra-content-loop.php in Yatra – Travel Booking & Tour Operator Software 2.1.16, at includes/class-yatra-content-loop.php
| 1 | <?php |
| 2 | |
| 3 | class Yatra_Content_Loop |
| 4 | { |
| 5 | public static function loop() |
| 6 | { |
| 7 | |
| 8 | if (have_posts()) { |
| 9 | |
| 10 | do_action('yatra_before_main_content_loop'); |
| 11 | |
| 12 | // Start the Loop. |
| 13 | while (have_posts()) : |
| 14 | the_post(); |
| 15 | |
| 16 | $template = ''; |
| 17 | |
| 18 | if (!is_single()) { |
| 19 | |
| 20 | $template = 'listing'; |
| 21 | } |
| 22 | yatra_get_template_part('parts/content', $template); |
| 23 | |
| 24 | endwhile; |
| 25 | |
| 26 | do_action('yatra_after_main_content_loop'); |
| 27 | |
| 28 | } else { |
| 29 | yatra_get_template_part('parts/content', 'none'); |
| 30 | |
| 31 | } |
| 32 | |
| 33 | |
| 34 | } |
| 35 | |
| 36 | } |