- Timestamp:
- 04/22/2022 05:42:45 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/members/single/groups.php
r12082 r13273 5 5 * @package BuddyPress 6 6 * @subpackage bp-legacy 7 * @version 3.0.07 * @version 11.0.0 8 8 */ 9 10 9 ?> 11 10 12 11 <div class="item-list-tabs no-ajax" id="subnav" aria-label="<?php esc_attr_e( 'Member secondary navigation', 'buddypress' ); ?>" role="navigation"> 13 12 <ul> 14 <?php if ( bp_is_my_profile() )bp_get_options_nav(); ?>13 <?php bp_get_options_nav(); ?> 15 14 16 <?php if ( ! bp_is_current_action( 'invites' ) ) : ?>15 <?php if ( ! bp_is_current_action( 'invites' ) ) : ?> 17 16 18 17 <li id="groups-order-select" class="last filter"> 19 18 20 <label for="groups-order-by"><?php _e( 'Order By:', 'buddypress' ); ?></label>19 <label for="groups-order-by"><?php esc_html_e( 'Order By:', 'buddypress' ); ?></label> 21 20 <select id="groups-order-by"> 22 <option value="active"><?php _e( 'Last Active', 'buddypress' ); ?></option>23 <option value="popular"><?php _e( 'Most Members', 'buddypress' ); ?></option>24 <option value="newest"><?php _e( 'Newly Created', 'buddypress' ); ?></option>25 <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option>21 <option value="active"><?php esc_html_e( 'Last Active', 'buddypress' ); ?></option> 22 <option value="popular"><?php esc_html_e( 'Most Members', 'buddypress' ); ?></option> 23 <option value="newest"><?php esc_html_e( 'Newly Created', 'buddypress' ); ?></option> 24 <option value="alphabetical"><?php esc_html_e( 'Alphabetical', 'buddypress' ); ?></option> 26 25 27 26 <?php … … 59 58 <h2 class="bp-screen-reader-text"><?php 60 59 /* translators: accessibility text */ 61 _e( 'My groups', 'buddypress' );60 esc_html_e( 'My groups', 'buddypress' ); 62 61 ?></h2> 63 62 <?php else : ?> 64 63 <h2 class="bp-screen-reader-text"><?php 65 64 /* translators: accessibility text */ 66 _e( 'Member\'s groups', 'buddypress' );65 esc_html_e( 'Member\'s groups', 'buddypress' ); 67 66 ?></h2> 68 67 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.