PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 2.4.1
Forumax – AI Powered Advanced Community Forum Plugin v2.4.1
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-reply.php

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

58 lines 1.6 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 Reply
5 *
6 * @package bbPress
7 * @subpackage Theme
8 */
9
10 // Exit if accessed directly
11 defined( 'ABSPATH' ) || exit;
12 ?>
13
14 <div class="bbp-reply-header">
15 <div class="bbp-meta">
16 <span class="bbp-reply-post-date"><?php bbp_reply_post_date(); ?></span>
17 <a href="<?php bbp_reply_url(); ?>" class="bbp-reply-permalink">#<?php bbp_reply_id(); ?></a>
18 </div><!-- .bbp-meta -->
19
20 <div class="bbp-reply-title">
21 <h3><?php esc_html_e( 'In reply to: ', 'forumax' ); ?>
22 <a class="bbp-topic-permalink" href="<?php bbp_topic_permalink( bbp_get_reply_topic_id() ); ?>"><?php bbp_topic_title( bbp_get_reply_topic_id() ); ?></a></h3>
23 </div><!-- .bbp-reply-title -->
24 </div><!-- .bbp-reply-header -->
25
26 <div id="post-<?php bbp_reply_id(); ?>" <?php bbp_reply_class(); ?>>
27 <div class="bbp-reply-author">
28
29 <?php do_action( 'bbp_theme_before_reply_author_details' ); ?>
30
31 <?php bbp_reply_author_link( array( 'show_role' => true ) ); ?>
32
33 <?php if ( bbp_is_user_keymaster() ) : ?>
34
35 <?php do_action( 'bbp_theme_before_reply_author_admin_details' ); ?>
36
37 <div class="bbp-reply-ip"><?php bbp_author_ip( bbp_get_reply_id() ); ?></div>
38
39 <?php do_action( 'bbp_theme_after_reply_author_admin_details' ); ?>
40
41 <?php endif; ?>
42
43 <?php do_action( 'bbp_theme_after_reply_author_details' ); ?>
44
45 </div><!-- .bbp-reply-author -->
46
47 <div class="bbp-reply-content">
48
49 <?php do_action( 'bbp_theme_before_reply_content' ); ?>
50
51 <?php bbp_reply_content(); ?>
52
53 <?php do_action( 'bbp_theme_after_reply_content' ); ?>
54
55 </div><!-- .bbp-reply-content -->
56 </div><!-- #post-<?php bbp_reply_id(); ?> -->
57
58