Skip to:
Content

bbPress.org


Ignore:
Timestamp:
12/28/2011 07:37:22 PM (14 years ago)
Author:
johnjamesjacoby
Message:

Audit the bbp-twentyten theme's actions, HTML, and CSS. See #1702.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/loop-replies.php

    r3634 r3651  
    1010?>
    1111
    12     <div id="bbpress-forums">
     12<?php do_action( 'bbp_template_before_replies_loop' ); ?>
    1313
    14         <?php do_action( 'bbp_template_before_replies_loop' ); ?>
     14<ul id="topic-<?php bbp_topic_id(); ?>-replies" class="forums bbp-replies">
    1515
    16         <ul id="topic-<?php bbp_topic_id(); ?>-replies" class="forums bbp-replies">
     16    <li class="bbp-header">
    1717
    18             <li class="bbp-header">
     18        <div class="bbp-reply-author"><?php  _e( 'Author',  'bbpress' ); ?></div><!-- .bbp-reply-author -->
    1919
    20                 <div class="bbp-reply-author"><?php  _e( 'Author',  'bbpress' ); ?></div><!-- .bbp-reply-author -->
     20        <div class="bbp-reply-content">
    2121
    22                 <div class="bbp-reply-content">
     22            <?php if ( !bbp_show_lead_topic() ) : ?>
    2323
    24                     <?php if ( !bbp_show_lead_topic() ) : ?>
     24                <?php _e( 'Posts', 'bbpress' ); ?>
    2525
    26                         <?php _e( 'Posts', 'bbpress' ); ?>
     26                <?php bbp_user_subscribe_link(); ?>
    2727
    28                         <?php bbp_user_subscribe_link(); ?>
     28                <?php bbp_user_favorites_link(); ?>
    2929
    30                         <?php bbp_user_favorites_link(); ?>
     30            <?php else : ?>
    3131
    32                     <?php else : ?>
     32                <?php _e( 'Replies', 'bbpress' ); ?>
    3333
    34                         <?php _e( 'Replies', 'bbpress' ); ?>
     34            <?php endif; ?>
    3535
    36                     <?php endif; ?>
     36        </div><!-- .bbp-reply-content -->
    3737
    38                 </div><!-- .bbp-reply-content -->
     38    </li><!-- .bbp-header -->
    3939
    40             </li><!-- .bbp-header -->
     40    <li class="bbp-body">
    4141
    42             <li class="bbp-body">
     42        <?php while ( bbp_replies() ) : bbp_the_reply(); ?>
    4343
    44                 <?php while ( bbp_replies() ) : bbp_the_reply(); ?>
     44            <?php bbp_get_template_part( 'bbpress/loop', 'single-reply' ); ?>
    4545
    46                     <?php bbp_get_template_part( 'bbpress/loop', 'single-reply' ); ?>
     46        <?php endwhile; ?>
    4747
    48                 <?php endwhile; ?>
     48    </li><!-- .bbp-body -->
    4949
    50             </li><!-- .bbp-body -->
     50    <li class="bbp-footer">
    5151
    52             <li class="bbp-footer">
     52        <div class="bbp-reply-author"><?php  _e( 'Author',  'bbpress' ); ?></div>
    5353
    54                 <div class="bbp-reply-author"><?php  _e( 'Author',  'bbpress' ); ?></div>
     54        <div class="bbp-reply-content">
    5555
    56                 <div class="bbp-reply-content">
     56            <?php if ( !bbp_show_lead_topic() ) : ?>
    5757
    58                     <?php if ( !bbp_show_lead_topic() ) : ?>
     58                <?php _e( 'Posts', 'bbpress' ); ?>
    5959
    60                         <?php _e( 'Posts', 'bbpress' ); ?>
     60            <?php else : ?>
    6161
    62                     <?php else : ?>
     62                <?php _e( 'Replies', 'bbpress' ); ?>
    6363
    64                         <?php _e( 'Replies', 'bbpress' ); ?>
     64            <?php endif; ?>
    6565
    66                     <?php endif; ?>
     66        </div><!-- .bbp-reply-content -->
    6767
    68                 </div><!-- .bbp-reply-content -->
     68    </li>
    6969
    70             </li>
     70</ul><!-- #topic-<?php bbp_topic_id(); ?>-replies -->
    7171
    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.