Changeset 5626 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/user-active-topics.php
- Timestamp:
- 07/07/2017 05:39:52 PM (8 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/user-active-topics.php
r5622 r5626 2 2 3 3 /** 4 * User Reviews Written4 * User Active Topics 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_active_topics' ); ?> 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-active-topics" class="bbp-user-active-topics"> 13 <h2 class="entry-title"><?php esc_html_e( 'Active Topics', 'wporg-forums' ); ?></h2> 14 14 <div class="bbp-user-section"> 15 15 … … 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 created any topics.', 'wporg-forums' ) 28 : esc_html_e( 'This user has not created any topics.', 'wporg-forums' ); 29 29 ?></p> 30 30 … … 32 32 33 33 </div> 34 </div><!-- #bbp-user- topics-started-->34 </div><!-- #bbp-user-active-topics --> 35 35 36 <?php do_action( 'bbp_template_after_user_ reviews_written' );36 <?php do_action( 'bbp_template_after_user_active_topics' );
Note: See TracChangeset
for help on using the changeset viewer.