Changeset 7006 for trunk/src/templates/default/bbpress/user-details.php
- Timestamp:
- 11/24/2019 01:38:37 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/templates/default/bbpress/user-details.php
r6574 r7006 26 26 <div id="bbp-user-navigation"> 27 27 <ul> 28 <li class="<?php if ( bbp_is_single_user_profile() ) : ?>current<?php endif; ?>">28 <li class="<?php if ( bbp_is_single_user_profile() ) : ?>current<?php endif; ?>"> 29 29 <span class="vcard bbp-user-profile-link"> 30 30 <a class="url fn n" href="<?php bbp_user_profile_url(); ?>" title="<?php printf( esc_attr__( "%s's Profile", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>" rel="me"><?php esc_html_e( 'Profile', 'bbpress' ); ?></a> … … 32 32 </li> 33 33 34 <li class="<?php if ( bbp_is_single_user_topics() ) : ?>current<?php endif; ?>">34 <li class="<?php if ( bbp_is_single_user_topics() ) : ?>current<?php endif; ?>"> 35 35 <span class='bbp-user-topics-created-link'> 36 36 <a href="<?php bbp_user_topics_created_url(); ?>" title="<?php printf( esc_attr__( "%s's Topics Started", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php esc_html_e( 'Topics Started', 'bbpress' ); ?></a> … … 38 38 </li> 39 39 40 <li class="<?php if ( bbp_is_single_user_replies() ) : ?>current<?php endif; ?>">40 <li class="<?php if ( bbp_is_single_user_replies() ) : ?>current<?php endif; ?>"> 41 41 <span class='bbp-user-replies-created-link'> 42 42 <a href="<?php bbp_user_replies_created_url(); ?>" title="<?php printf( esc_attr__( "%s's Replies Created", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php esc_html_e( 'Replies Created', 'bbpress' ); ?></a> … … 45 45 46 46 <?php if ( bbp_is_engagements_active() ) : ?> 47 <li class="<?php if ( bbp_is_single_user_engagements() ) : ?>current<?php endif; ?>">47 <li class="<?php if ( bbp_is_single_user_engagements() ) : ?>current<?php endif; ?>"> 48 48 <span class='bbp-user-engagements-created-link'> 49 49 <a href="<?php bbp_user_engagements_url(); ?>" title="<?php printf( esc_attr__( "%s's Engagements", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php esc_html_e( 'Engagements', 'bbpress' ); ?></a> … … 53 53 54 54 <?php if ( bbp_is_favorites_active() ) : ?> 55 <li class="<?php if ( bbp_is_favorites() ) : ?>current<?php endif; ?>">55 <li class="<?php if ( bbp_is_favorites() ) : ?>current<?php endif; ?>"> 56 56 <span class="bbp-user-favorites-link"> 57 57 <a href="<?php bbp_favorites_permalink(); ?>" title="<?php printf( esc_attr__( "%s's Favorites", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php esc_html_e( 'Favorites', 'bbpress' ); ?></a> … … 63 63 64 64 <?php if ( bbp_is_subscriptions_active() ) : ?> 65 <li class="<?php if ( bbp_is_subscriptions() ) : ?>current<?php endif; ?>">65 <li class="<?php if ( bbp_is_subscriptions() ) : ?>current<?php endif; ?>"> 66 66 <span class="bbp-user-subscriptions-link"> 67 67 <a href="<?php bbp_subscriptions_permalink(); ?>" title="<?php printf( esc_attr__( "%s's Subscriptions", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php esc_html_e( 'Subscriptions', 'bbpress' ); ?></a> … … 70 70 <?php endif; ?> 71 71 72 <li class="<?php if ( bbp_is_single_user_edit() ) : ?>current<?php endif; ?>">72 <li class="<?php if ( bbp_is_single_user_edit() ) : ?>current<?php endif; ?>"> 73 73 <span class="bbp-user-edit-link"> 74 74 <a href="<?php bbp_user_profile_edit_url(); ?>" title="<?php printf( esc_attr__( "Edit %s's Profile", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php esc_html_e( 'Edit', 'bbpress' ); ?></a>
Note: See TracChangeset
for help on using the changeset viewer.