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 / content-single-reply.php

content-single-reply.php in Forumax – AI Powered Advanced Community Forum Plugin 2.4.0, at templates/content-single-reply.php

33 lines 710 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Single Reply Content Part
4 *
5 * @package bbPress
6 * @subpackage Theme
7 */
8
9 // Exit if accessed directly
10 defined( 'ABSPATH' ) || exit;
11 ?>
12
13 <div class="frmx-row">
14 <div class="frmx-col-md-12">
15 <div id="bbpress-forums" class="bbpress-wrapper main-post">
16 <?php do_action( 'bbp_template_before_single_reply' ); ?>
17
18 <?php if ( post_password_required() ) : ?>
19
20 <?php bbp_get_template_part( 'form', 'protected' ); ?>
21
22 <?php else : ?>
23
24 <?php bbp_get_template_part( 'loop', 'single-reply' ); ?>
25
26 <?php endif; ?>
27
28 <?php do_action( 'bbp_template_after_single_reply' ); ?>
29
30 </div>
31 </div>
32 </div>
33