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-single-forum.php

    r3634 r3651  
    1010?>
    1111
    12     <ul id="bbp-forum-<?php bbp_forum_id(); ?>" <?php bbp_forum_class(); ?>>
     12<ul id="bbp-forum-<?php bbp_forum_id(); ?>" <?php bbp_forum_class(); ?>>
    1313
    14         <li class="bbp-forum-info">
     14    <li class="bbp-forum-info">
    1515
    16             <?php do_action( 'bbp_theme_before_forum_title' ); ?>
     16        <?php do_action( 'bbp_theme_before_forum_title' ); ?>
    1717
    18             <a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>" title="<?php bbp_forum_title(); ?>"><?php bbp_forum_title(); ?></a>
     18        <a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>" title="<?php bbp_forum_title(); ?>"><?php bbp_forum_title(); ?></a>
    1919
    20             <?php do_action( 'bbp_theme_after_forum_title' ); ?>
     20        <?php do_action( 'bbp_theme_after_forum_title' ); ?>
    2121
    22             <?php do_action( 'bbp_theme_before_forum_sub_forums' ); ?>
     22        <?php do_action( 'bbp_theme_before_forum_sub_forums' ); ?>
    2323
    24             <?php bbp_list_forums(); ?>
     24        <?php bbp_list_forums(); ?>
    2525
    26             <?php do_action( 'bbp_theme_after_forum_sub_forums' ); ?>
     26        <?php do_action( 'bbp_theme_after_forum_sub_forums' ); ?>
    2727
    28             <?php do_action( 'bbp_theme_before_forum_description' ); ?>
     28        <?php do_action( 'bbp_theme_before_forum_description' ); ?>
    2929
    30             <div class="bbp-forum-description"><?php the_content(); ?></div>
     30        <div class="bbp-forum-description"><?php the_content(); ?></div>
    3131
    32             <?php do_action( 'bbp_theme_after_forum_description' ); ?>
     32        <?php do_action( 'bbp_theme_after_forum_description' ); ?>
    3333
    34         </li>
     34    </li>
    3535
    36         <li class="bbp-forum-topic-count"><?php bbp_forum_topic_count(); ?></li>
     36    <li class="bbp-forum-topic-count"><?php bbp_forum_topic_count(); ?></li>
    3737
    38         <li class="bbp-forum-reply-count"><?php bbp_show_lead_topic() ? bbp_forum_reply_count() : bbp_forum_post_count(); ?></li>
     38    <li class="bbp-forum-reply-count"><?php bbp_show_lead_topic() ? bbp_forum_reply_count() : bbp_forum_post_count(); ?></li>
    3939
    40         <li class="bbp-forum-freshness">
     40    <li class="bbp-forum-freshness">
    4141
    42             <?php do_action( 'bbp_theme_before_forum_freshness_link' ); ?>
     42        <?php do_action( 'bbp_theme_before_forum_freshness_link' ); ?>
    4343
    44             <?php bbp_forum_freshness_link(); ?>
     44        <?php bbp_forum_freshness_link(); ?>
    4545
    46             <?php do_action( 'bbp_theme_after_forum_freshness_link' ); ?>
     46        <?php do_action( 'bbp_theme_after_forum_freshness_link' ); ?>
    4747
    48             <p class="bbp-topic-meta">
     48        <p class="bbp-topic-meta">
    4949
    50                 <?php do_action( 'bbp_theme_before_topic_author' ); ?>
     50            <?php do_action( 'bbp_theme_before_topic_author' ); ?>
    5151
    52                 <span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span>
     52            <span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span>
    5353
    54                 <?php do_action( 'bbp_theme_after_topic_author' ); ?>
     54            <?php do_action( 'bbp_theme_after_topic_author' ); ?>
    5555
    56             </p>
    57         </li>
     56        </p>
     57    </li>
    5858
    59     </ul><!-- #bbp-forum-<?php bbp_forum_id(); ?> -->
     59</ul><!-- #bbp-forum-<?php bbp_forum_id(); ?> -->
Note: See TracChangeset for help on using the changeset viewer.