web/wp-content/plugins/bbpress/templates/default/bbpress/loop-single-forum.php
changeset 196 5e8dcbe22c24
equal deleted inserted replaced
195:c7c0fbc09788 196:5e8dcbe22c24
       
     1 <?php
       
     2 
       
     3 /**
       
     4  * Forums Loop - Single Forum
       
     5  *
       
     6  * @package bbPress
       
     7  * @subpackage Theme
       
     8  */
       
     9 
       
    10 ?>
       
    11 
       
    12 <ul id="bbp-forum-<?php bbp_forum_id(); ?>" <?php bbp_forum_class(); ?>>
       
    13 
       
    14 	<li class="bbp-forum-info">
       
    15 
       
    16 		<?php do_action( 'bbp_theme_before_forum_title' ); ?>
       
    17 
       
    18 		<a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>" title="<?php bbp_forum_title(); ?>"><?php bbp_forum_title(); ?></a>
       
    19 
       
    20 		<?php do_action( 'bbp_theme_after_forum_title' ); ?>
       
    21 
       
    22 		<?php do_action( 'bbp_theme_before_forum_sub_forums' ); ?>
       
    23 
       
    24 		<?php bbp_list_forums(); ?>
       
    25 
       
    26 		<?php do_action( 'bbp_theme_after_forum_sub_forums' ); ?>
       
    27 
       
    28 		<?php do_action( 'bbp_theme_before_forum_description' ); ?>
       
    29 
       
    30 		<div class="bbp-forum-content"><?php the_content(); ?></div>
       
    31 
       
    32 		<?php do_action( 'bbp_theme_after_forum_description' ); ?>
       
    33 
       
    34 		<?php bbp_forum_row_actions(); ?>
       
    35 
       
    36 	</li>
       
    37 
       
    38 	<li class="bbp-forum-topic-count"><?php bbp_forum_topic_count(); ?></li>
       
    39 
       
    40 	<li class="bbp-forum-reply-count"><?php bbp_show_lead_topic() ? bbp_forum_reply_count() : bbp_forum_post_count(); ?></li>
       
    41 
       
    42 	<li class="bbp-forum-freshness">
       
    43 
       
    44 		<?php do_action( 'bbp_theme_before_forum_freshness_link' ); ?>
       
    45 
       
    46 		<?php bbp_forum_freshness_link(); ?>
       
    47 
       
    48 		<?php do_action( 'bbp_theme_after_forum_freshness_link' ); ?>
       
    49 
       
    50 		<p class="bbp-topic-meta">
       
    51 
       
    52 			<?php do_action( 'bbp_theme_before_topic_author' ); ?>
       
    53 
       
    54 			<span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span>
       
    55 
       
    56 			<?php do_action( 'bbp_theme_after_topic_author' ); ?>
       
    57 
       
    58 		</p>
       
    59 	</li>
       
    60 
       
    61 </ul><!-- #bbp-forum-<?php bbp_forum_id(); ?> -->