PluginProbe
Yatra – Travel Booking & Tour Operator Software / 3.0.15
Yatra – Travel Booking & Tour Operator Software v3.0.15
3.0.15 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 All 83 releases
yatra / templates / parts / pagination.php

pagination.php in Yatra – Travel Booking & Tour Operator Software 3.0.15, at templates/parts/pagination.php

34 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if (!defined('ABSPATH')) {
4 exit;
5 }
6
7 if ($total <= 1) {
8 return;
9 }
10 $attributes = is_array($attributes) ? $attributes: array();
11 ?>
12 <div class="yatra-row yatra-pagination-wrap">
13 <nav id="post-navigation" class="yatra-pagination navigation pagination <?php echo esc_attr($class) ?>"
14 attributes="<?php echo esc_attr(json_encode($attributes)) ?>" type="<?php echo esc_attr($type); ?>">
15 <?php
16 echo paginate_links(
17 apply_filters(
18 'yatra_pagination_args',
19 array( // WPCS: XSS ok.
20 'base' => $base,
21 'format' => $format,
22 'add_args' => false,
23 'current' => max(1, $current),
24 'total' => $total,
25 'prev_text' => is_rtl() ? '&rarr;' : '&larr;',
26 'next_text' => is_rtl() ? '&larr;' : '&rarr;',
27 'end_size' => 3,
28 'mid_size' => 3,
29 )
30 )
31 );
32 ?>
33 </nav>
34 </div>