- Timestamp:
- 05/15/2011 08:26:39 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-themes/bbp-twentyten/single-forum.php
r3130 r3160 27 27 <?php bbp_get_template_part( 'bbpress/nav', 'breadcrumb' ); ?> 28 28 29 <?php bbp_single_forum_description();?>29 <?php if ( post_password_required() ) : ?> 30 30 31 <?php if ( bbp_get_forum_subforum_count() && bbp_has_forums() ) :?>31 <?php bbp_get_template_part( 'bbpress/form', 'protected' ); ?> 32 32 33 <?php bbp_get_template_part( 'bbpress/loop', 'forums' );?>33 <?php else : ?> 34 34 35 <?php endif; ?>35 <?php bbp_single_forum_description(); ?> 36 36 37 <?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?>37 <?php if ( bbp_get_forum_subforum_count() && bbp_has_forums() ) : ?> 38 38 39 <?php bbp_get_template_part( 'bbpress/pagination', 'topics' ); ?>39 <?php bbp_get_template_part( 'bbpress/loop', 'forums' ); ?> 40 40 41 <?php bbp_get_template_part( 'bbpress/loop', 'topics' ); ?>41 <?php endif; ?> 42 42 43 <?php bbp_get_template_part( 'bbpress/pagination', 'topics' );?>43 <?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?> 44 44 45 <?php bbp_get_template_part( 'bbpress/form', 'topic'); ?>45 <?php bbp_get_template_part( 'bbpress/pagination', 'topics' ); ?> 46 46 47 <?php elseif( !bbp_is_forum_category() ) :?>47 <?php bbp_get_template_part( 'bbpress/loop', 'topics' ); ?> 48 48 49 <?php bbp_get_template_part( 'bbpress/no','topics' ); ?>49 <?php bbp_get_template_part( 'bbpress/pagination', 'topics' ); ?> 50 50 51 <?php bbp_get_template_part( 'bbpress/form', 'topic' ); ?> 51 <?php bbp_get_template_part( 'bbpress/form', 'topic' ); ?> 52 53 <?php elseif( !bbp_is_forum_category() ) : ?> 54 55 <?php bbp_get_template_part( 'bbpress/no', 'topics' ); ?> 56 57 <?php bbp_get_template_part( 'bbpress/form', 'topic' ); ?> 58 59 <?php endif; ?> 52 60 53 61 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.