PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / trunk
Forumax – AI Powered Advanced Community Forum Plugin vtrunk
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-replies.php

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

26 lines 720 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 replies (when viewing a topic)
4 *
5 * @package bbPress
6 * @subpackage Theme
7 */
8
9 // Exit if accessed directly
10 defined( 'ABSPATH' ) || exit;
11
12 do_action( 'bbp_template_before_pagination_loop' ); ?>
13
14 <div class="pagination-wrapper <?php echo !bbp_get_topic_pagination_links() ? 'no-pagination' : ''; ?>">
15 <div class="view-post-of">
16 <p><?php bbp_topic_pagination_count(); ?></p>
17 </div>
18 <?php if ( bbp_get_topic_pagination_links() ) : ?>
19 <div class="bbp-pagination">
20 <?php bbp_topic_pagination_links(); ?>
21 </div>
22 <?php endif; ?>
23 </div>
24
25 <?php do_action( 'bbp_template_after_pagination_loop' );
26