File Editor
Directories:
.. (Back)
Files:
content-archive-topic.php
content-search.php
content-single-forum.php
content-single-topic.php
content-single-view.php
feedback-no-search.php
form-reply-move.php
form-reply.php
form-search.php
form-topic-merge.php
form-topic-split.php
form-topic-tag.php
form-topic.php
form-user-edit.php
form-user-login.php
form-user-lost-pass.php
form-user-register.php
loop-forums.php
loop-replies.php
loop-search-forum.php
loop-search-reply.php
loop-search-topic.php
loop-search.php
loop-single-reply.php
loop-single-topic.php
loop-topics.php
pagination-replies.php
pagination-search.php
pagination-topics.php
user-details.php
user-favorites.php
user-replies-created.php
user-subscriptions.php
user-topics-created.php
Create New File
Create
Edit File: loop-topics.php
<?php /** * Topics Loop * * @package bbPress * @subpackage Theme */ ?> <?php do_action( 'bbp_template_before_topics_loop' ); ?> <ul id="bbp-forum-<?php bbp_forum_id(); ?>" class="bbp-topics"> <li class="bbp-header"> <ul class="forum-titles"> <li class="bbp-topic-title"><?php _e( 'Topic', 'bbpress' ); ?></li> <li class="bbp-topic-voice-count"><?php _e( 'Voices', 'bbpress' ); ?></li> <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? _e( 'Replies', 'bbpress' ) : _e( 'Posts', 'bbpress' ); ?></li> <li class="bbp-topic-freshness"><?php _e( 'Freshness', 'bbpress' ); ?></li> </ul> </li> <li class="bbp-body"> <?php while ( bbp_topics() ) : bbp_the_topic(); ?> <?php bbp_get_template_part( 'loop', 'single-topic' ); ?> <?php endwhile; ?> </li> <li class="bbp-footer"> <ul class="forum-titles"> <li class="bbp-topic-title"><?php _e( 'Topic', 'bbpress' ); ?></li> <li class="bbp-topic-voice-count"><?php _e( 'Voices', 'bbpress' ); ?></li> <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? _e( 'Replies', 'bbpress' ) : _e( 'Posts', 'bbpress' ); ?></li> <li class="bbp-topic-freshness"><?php _e( 'Freshness', 'bbpress' ); ?></li> </ul> </li> </ul><!-- #bbp-forum-<?php bbp_forum_id(); ?> --> <?php do_action( 'bbp_template_after_topics_loop' ); ?>
Save Changes
Rename File
Rename