| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Forums Loop |
| 5 |
* |
| 6 |
* @package bbPress |
| 7 |
* @subpackage Theme |
| 8 |
*/ |
| 9 |
|
| 10 |
// Exit if accessed directly |
| 11 |
defined( 'ABSPATH' ) || exit; |
| 12 |
|
| 13 |
do_action( 'bbp_template_before_forums_loop' ); ?> |
| 14 |
|
| 15 |
<div class="forums-box"> |
| 16 |
|
| 17 |
<div class="post-header forums-header"> |
| 18 |
<div class="frmx-col-md-6 frmx-col-sm-6 support-info"> |
| 19 |
<span> <?php esc_html_e( 'Forum', 'forumax' ); ?> </span> |
| 20 |
</div> |
| 21 |
<!-- /.support-info --> |
| 22 |
<div class="frmx-col-md-6 frmx-col-sm-6 support-category-menus"> |
| 23 |
<ul class="forum-titles"> |
| 24 |
<li class="forum-topic-count"> <?php esc_html_e( 'Topics', 'forumax' ); ?> </li> |
| 25 |
<li class="forum-reply-count"> <?php bbp_show_lead_topic() ? esc_html_e( 'Replies', 'forumax' ) : esc_html_e( 'Posts', 'forumax' ); ?> </li> |
| 26 |
<li class="forum-freshness"> <?php esc_html_e( 'Last Post', 'forumax' ); ?> </li> |
| 27 |
</ul> |
| 28 |
</div> |
| 29 |
<!-- /.support-category-menus --> |
| 30 |
</div> |
| 31 |
|
| 32 |
<div class="community-posts-wrapper bb-radius"> |
| 33 |
<?php while ( bbp_forums() ) : bbp_the_forum(); ?> |
| 34 |
<?php bbp_get_template_part( 'loop', 'single-forum' ); ?> |
| 35 |
<?php endwhile; ?> |
| 36 |
</div> |
| 37 |
|
| 38 |
</div> |
| 39 |
|
| 40 |
<?php do_action( 'bbp_template_after_forums_loop' ); |