PluginProbe
Yatra – Travel Booking & Tour Operator Software / 2.1.16
Yatra – Travel Booking & Tour Operator Software v2.1.16
3.0.14 3.0.14.1 3.0.14.2 3.0.12 3.0.13 3.0.11 3.0.10 3.0.9 3.0.8 3.0.7 3.0.6 3.0.5 3.0.5.1 3.0.4 3.0.3 3.0.2.9 3.0.2.7 3.0.2.8 3.0.2.6 trunk 1.0.0 2.0.0 2.0.1 2.0.10 2.0.11 All 82 releases
yatra / includes / class-yatra-content-loop.php

class-yatra-content-loop.php in Yatra – Travel Booking & Tour Operator Software 2.1.16, at includes/class-yatra-content-loop.php

36 lines 646 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }