PluginProbe
bbPress / 2.6.17
bbPress v2.6.17
2.6.17 trunk 2.0 2.0-beta-1 2.0-beta-2b 2.0-beta-3 2.0-beta-3b 2.0-rc-2 2.0-rc-3 2.0-rc-4 2.0-rc-5 2.0.1 2.0.2 2.0.3 2.1 2.1-beta-1 2.1-rc1 2.1-rc2 2.1-rc3 2.1-rc4 2.1.1 2.1.2 2.1.3 2.2 2.2.1 All 72 releases
bbpress / templates / default / bbpress / loop-replies.php

loop-replies.php in bbPress 2.6.17, at templates/default/bbpress/loop-replies.php

53 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Replies 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_replies_loop' ); ?>
14
15 <ul id="topic-<?php bbp_topic_id(); ?>-replies" class="forums bbp-replies">
16
17 <li class="bbp-header">
18 <div class="bbp-reply-author"><?php esc_html_e( 'Author', 'bbpress' ); ?></div><!-- .bbp-reply-author -->
19 <div class="bbp-reply-content"><?php bbp_show_lead_topic()
20 ? esc_html_e( 'Replies', 'bbpress' )
21 : esc_html_e( 'Posts', 'bbpress' );
22 ?></div><!-- .bbp-reply-content -->
23 </li><!-- .bbp-header -->
24
25 <li class="bbp-body">
26
27 <?php if ( bbp_thread_replies() ) : ?>
28
29 <?php bbp_list_replies(); ?>
30
31 <?php else : ?>
32
33 <?php while ( bbp_replies() ) : bbp_the_reply(); ?>
34
35 <?php bbp_get_template_part( 'loop', 'single-reply' ); ?>
36
37 <?php endwhile; ?>
38
39 <?php endif; ?>
40
41 </li><!-- .bbp-body -->
42
43 <li class="bbp-footer">
44 <div class="bbp-reply-author"><?php esc_html_e( 'Author', 'bbpress' ); ?></div>
45 <div class="bbp-reply-content"><?php bbp_show_lead_topic()
46 ? esc_html_e( 'Replies', 'bbpress' )
47 : esc_html_e( 'Posts', 'bbpress' );
48 ?></div><!-- .bbp-reply-content -->
49 </li><!-- .bbp-footer -->
50 </ul><!-- #topic-<?php bbp_topic_id(); ?>-replies -->
51
52 <?php do_action( 'bbp_template_after_replies_loop' );
53