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