- Timestamp:
- 12/28/2011 07:37:22 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-themes/bbp-twentyten/bbpress/loop-replies.php
r3634 r3651 10 10 ?> 11 11 12 <div id="bbpress-forums">12 <?php do_action( 'bbp_template_before_replies_loop' ); ?> 13 13 14 <?php do_action( 'bbp_template_before_replies_loop' ); ?>14 <ul id="topic-<?php bbp_topic_id(); ?>-replies" class="forums bbp-replies"> 15 15 16 <ul id="topic-<?php bbp_topic_id(); ?>-replies" class="forums bbp-replies">16 <li class="bbp-header"> 17 17 18 <li class="bbp-header">18 <div class="bbp-reply-author"><?php _e( 'Author', 'bbpress' ); ?></div><!-- .bbp-reply-author --> 19 19 20 <div class="bbp-reply-author"><?php _e( 'Author', 'bbpress' ); ?></div><!-- .bbp-reply-author -->20 <div class="bbp-reply-content"> 21 21 22 <div class="bbp-reply-content">22 <?php if ( !bbp_show_lead_topic() ) : ?> 23 23 24 <?php if ( !bbp_show_lead_topic() ) :?>24 <?php _e( 'Posts', 'bbpress' ); ?> 25 25 26 <?php _e( 'Posts', 'bbpress'); ?>26 <?php bbp_user_subscribe_link(); ?> 27 27 28 <?php bbp_user_subscribe_link(); ?>28 <?php bbp_user_favorites_link(); ?> 29 29 30 <?php bbp_user_favorites_link();?>30 <?php else : ?> 31 31 32 <?php else :?>32 <?php _e( 'Replies', 'bbpress' ); ?> 33 33 34 <?php _e( 'Replies', 'bbpress' ); ?>34 <?php endif; ?> 35 35 36 <?php endif; ?>36 </div><!-- .bbp-reply-content --> 37 37 38 </div><!-- .bbp-reply-content-->38 </li><!-- .bbp-header --> 39 39 40 </li><!-- .bbp-header -->40 <li class="bbp-body"> 41 41 42 <li class="bbp-body">42 <?php while ( bbp_replies() ) : bbp_the_reply(); ?> 43 43 44 <?php while ( bbp_replies() ) : bbp_the_reply(); ?>44 <?php bbp_get_template_part( 'bbpress/loop', 'single-reply' ); ?> 45 45 46 <?php bbp_get_template_part( 'bbpress/loop', 'single-reply' ); ?>46 <?php endwhile; ?> 47 47 48 <?php endwhile; ?>48 </li><!-- .bbp-body --> 49 49 50 </li><!-- .bbp-body -->50 <li class="bbp-footer"> 51 51 52 <li class="bbp-footer">52 <div class="bbp-reply-author"><?php _e( 'Author', 'bbpress' ); ?></div> 53 53 54 <div class="bbp-reply-author"><?php _e( 'Author', 'bbpress' ); ?></div>54 <div class="bbp-reply-content"> 55 55 56 <div class="bbp-reply-content">56 <?php if ( !bbp_show_lead_topic() ) : ?> 57 57 58 <?php if ( !bbp_show_lead_topic() ) :?>58 <?php _e( 'Posts', 'bbpress' ); ?> 59 59 60 <?php _e( 'Posts', 'bbpress' );?>60 <?php else : ?> 61 61 62 <?php else :?>62 <?php _e( 'Replies', 'bbpress' ); ?> 63 63 64 <?php _e( 'Replies', 'bbpress' ); ?>64 <?php endif; ?> 65 65 66 <?php endif; ?>66 </div><!-- .bbp-reply-content --> 67 67 68 </div><!-- .bbp-reply-content -->68 </li> 69 69 70 </li>70 </ul><!-- #topic-<?php bbp_topic_id(); ?>-replies --> 71 71 72 </ul><!-- #topic-<?php bbp_topic_id(); ?>-replies --> 73 74 <?php do_action( 'bbp_template_after_replies_loop' ); ?> 75 76 </div><!-- #bbpress-forums --> 77 72 <?php do_action( 'bbp_template_after_replies_loop' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.