| 1 |
<?php |
| 2 |
/** |
| 3 |
* Single Topic Content Part |
| 4 |
* |
| 5 |
* @package bbPress |
| 6 |
* @subpackage Theme |
| 7 |
*/ |
| 8 |
|
| 9 |
// Exit if accessed directly |
| 10 |
defined('ABSPATH') || exit; |
| 11 |
|
| 12 |
$has_sidebar = is_active_sidebar('forum_archive_sidebar'); |
| 13 |
?> |
| 14 |
<section <?php bbp_topic_class(get_the_ID(), array('forum-single-content')); ?>> |
| 15 |
<div class="forum-layout"> |
| 16 |
|
| 17 |
<div class="frmx-row frmx-sidebar-<?php echo esc_attr(forumax_get_opt('sidebar_position', 'right')); ?>"> |
| 18 |
<div class="frmx-col-lg-<?php echo esc_attr($has_sidebar ? '8' : '12'); ?> forum-main-column"> |
| 19 |
|
| 20 |
<?php |
| 21 |
if (post_password_required()): |
| 22 |
bbp_get_template_part('form', 'protected'); |
| 23 |
else: |
| 24 |
bbp_get_template_part('content', 'single-topic-lead'); |
| 25 |
?> |
| 26 |
|
| 27 |
<?php if (bbp_has_replies()): ?> |
| 28 |
|
| 29 |
<div id="topic-<?php bbp_topic_id(); ?>-replies" class="all-answers"> |
| 30 |
|
| 31 |
<div class="all-replies-header frmx-all-replies-header"> |
| 32 |
<h5 class="replies-title"> |
| 33 |
<?php esc_html_e('All Replies', 'forumax'); ?> |
| 34 |
</h5> |
| 35 |
|
| 36 |
<div class="replies-sorting"> |
| 37 |
<select name="sort-replies" id="sort-replies" class="replies-sort-select"> |
| 38 |
<option selected disabled>Sort By</option> |
| 39 |
<option value="desc">Newest First</option> |
| 40 |
<option value="asc">Oldest First</option> |
| 41 |
<option value="vote">Highest Votes First</option> |
| 42 |
</select> |
| 43 |
</div> |
| 44 |
</div> |
| 45 |
|
| 46 |
<div class="reply-result"> |
| 47 |
<?php bbp_get_template_part('loop', 'replies'); ?> |
| 48 |
</div> |
| 49 |
|
| 50 |
<?php bbp_get_template_part('pagination', 'replies'); ?> |
| 51 |
|
| 52 |
</div> |
| 53 |
|
| 54 |
<?php endif; ?> |
| 55 |
|
| 56 |
<?php bbp_get_template_part('form', 'reply'); ?> |
| 57 |
|
| 58 |
<?php bbp_get_template_part('alert', 'topic-lock'); ?> |
| 59 |
|
| 60 |
<?php do_action('bbp_template_after_single_topic'); ?> |
| 61 |
|
| 62 |
<?php endif; ?> |
| 63 |
|
| 64 |
</div> |
| 65 |
<!-- /.forum-main-column --> |
| 66 |
|
| 67 |
<?php if ($has_sidebar): ?> |
| 68 |
<div class="frmx-col-lg-4 forum-sidebar-column"> |
| 69 |
<aside class="forum-sidebar"> |
| 70 |
<?php dynamic_sidebar('forum_archive_sidebar'); ?> |
| 71 |
</aside> |
| 72 |
</div> |
| 73 |
<?php endif; ?> |
| 74 |
</div> |
| 75 |
</div> |
| 76 |
</section> |