Changeset 5626 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/user-topics-replied-to.php
- Timestamp:
- 07/07/2017 05:39:52 PM (7 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/user-topics-replied-to.php
r5622 r5626 2 2 3 3 /** 4 * User Reviews Written4 * User Topics Replied To 5 5 * 6 6 * @package bbPress … … 8 8 */ 9 9 10 do_action( 'bbp_template_before_user_ reviews_written' ); ?>10 do_action( 'bbp_template_before_user_topics_replied_to' ); ?> 11 11 12 <div id="bbp-user-topics- started" class="bbp-user-topics-started">13 <h2 class="entry-title"><?php esc_html_e( ' Reviews Written', 'wporg-forums' ); ?></h2>12 <div id="bbp-user-topics-replied-to" class="bbp-user-topics-replied-to"> 13 <h2 class="entry-title"><?php esc_html_e( 'Topics Replied To', 'wporg-forums' ); ?></h2> 14 14 <div class="bbp-user-section"> 15 15 16 <?php if ( bbp_get_user_ topics_started() ) : ?>16 <?php if ( bbp_get_user_replies_created() ) : ?> 17 17 18 <?php bbp_get_template_part( 'pagination', ' topics' ); ?>18 <?php bbp_get_template_part( 'pagination', 'replies' ); ?> 19 19 20 <?php bbp_get_template_part( 'loop', ' topics' ); ?>20 <?php bbp_get_template_part( 'loop', 'reply-topics' ); ?> 21 21 22 <?php bbp_get_template_part( 'pagination', ' topics' ); ?>22 <?php bbp_get_template_part( 'pagination', 'replies' ); ?> 23 23 24 24 <?php else : ?> 25 25 26 26 <p><?php bbp_is_user_home() 27 ? esc_html_e( 'You have not written any reviews.', 'wporg-forums' )28 : esc_html_e( 'This user has not written any reviews.', 'wporg-forums' );27 ? esc_html_e( 'You have not replied to any topics.', 'wporg-forums' ) 28 : esc_html_e( 'This user has not replied to any topics.', 'wporg-forums' ); 29 29 ?></p> 30 30 … … 32 32 33 33 </div> 34 </div><!-- #bbp-user-topics- started-->34 </div><!-- #bbp-user-topics-replied-to --> 35 35 36 <?php do_action( 'bbp_template_after_user_ reviews_written' );36 <?php do_action( 'bbp_template_after_user_topics_replied_to' );
Note: See TracChangeset
for help on using the changeset viewer.