| 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="row"> |
| 14 |
<div class="column-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 |
|