PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / trunk
Forumax – AI Powered Advanced Community Forum Plugin vtrunk
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-search-forum.php

loop-search-forum.php in Forumax – AI Powered Advanced Community Forum Plugin trunk, at templates/loop-search-forum.php

43 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Search Loop - Single Forum
5 *
6 * @package bbPress
7 * @subpackage Theme
8 */
9
10 // Exit if accessed directly
11 defined( 'ABSPATH' ) || exit;
12 ?>
13
14 <div class="bbp-forum-header">
15 <div class="bbp-meta">
16 <span class="bbp-forum-post-date"><?php printf( esc_html__( 'Last updated %s', 'forumax' ), bbp_get_forum_last_active_time() ); ?></span>
17 <a href="<?php bbp_forum_permalink(); ?>" class="bbp-forum-permalink">#<?php bbp_forum_id(); ?></a>
18 </div><!-- .bbp-meta -->
19
20 <div class="bbp-forum-title">
21
22 <?php do_action( 'bbp_theme_before_forum_title' ); ?>
23
24 <h3><?php esc_html_e( 'Forum:', 'forumax' ); ?>
25 <a href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a></h3>
26
27 <?php do_action( 'bbp_theme_after_forum_title' ); ?>
28
29 </div><!-- .bbp-forum-title -->
30 </div><!-- .bbp-forum-header -->
31
32 <div id="post-<?php bbp_forum_id(); ?>" <?php bbp_forum_class(); ?>>
33 <div class="bbp-forum-content">
34
35 <?php do_action( 'bbp_theme_before_forum_content' ); ?>
36
37 <?php bbp_forum_content(); ?>
38
39 <?php do_action( 'bbp_theme_after_forum_content' ); ?>
40
41 </div><!-- .bbp-forum-content -->
42 </div><!-- #post-<?php bbp_forum_id(); ?> -->
43