PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 2.4.3
Forumax – AI Powered Advanced Community Forum Plugin v2.4.3
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / templates / pagination-topics.php

pagination-topics.php in Forumax – AI Powered Advanced Community Forum Plugin 2.4.3, at templates/pagination-topics.php

26 lines 525 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Pagination for pages of topics (when viewing a forum)
4 *
5 * @package bbPress
6 * @subpackage Theme
7 */
8
9 // Exit if accessed directly
10 defined( 'ABSPATH' ) || exit;
11
12 ?>
13
14 <?php do_action( 'bbp_template_before_pagination_loop' ); ?>
15
16 <div class="bbp-pagination frmx-pagination">
17 <div class="bbp-pagination-count">
18 <?php bbp_forum_pagination_count(); ?>
19 </div>
20
21 <div class="bbp-pagination-links">
22 <?php bbp_forum_pagination_links(); ?>
23 </div>
24 </div>
25
26 <?php do_action( 'bbp_template_after_pagination_loop' ); ?>