PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 2.4.2
Forumax – AI Powered Advanced Community Forum Plugin v2.4.2
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-forums.php

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

40 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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( 'Latest activity', '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' );