PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 2.4.0
Forumax – AI Powered Advanced Community Forum Plugin v2.4.0
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 / loop-replies.php

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

32 lines 542 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Replies Loop
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_replies_loop' ); ?>
13
14 <?php if ( bbp_thread_replies() ) : ?>
15 <?php
16 bbp_list_replies(array(
17 'style' => 'ul',
18 ));
19 ?>
20
21 <?php else : ?>
22
23 <?php while ( bbp_replies() ) : bbp_the_reply(); ?>
24
25 <?php bbp_get_template_part( 'loop', 'single-reply' ); ?>
26
27 <?php endwhile; ?>
28
29 <?php endif; ?>
30
31 <?php do_action( 'bbp_template_after_replies_loop' );
32