Changeset 45503 for trunk/src/wp-admin/includes/class-wp-screen.php
- Timestamp:
- 06/08/2019 04:30:15 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-screen.php
r45224 r45503 928 928 ?> 929 929 <div id="screen-meta-links"> 930 <?php if ( $this-> get_help_tabs() ) : ?>931 <div id=" contextual-help-link-wrap" class="hide-if-no-js screen-meta-toggle">932 <button type="button" id=" contextual-help-link" class="button show-settings" aria-controls="contextual-help-wrap" aria-expanded="false"><?php _e( 'Help' ); ?></button>930 <?php if ( $this->show_screen_options() ) : ?> 931 <div id="screen-options-link-wrap" class="hide-if-no-js screen-meta-toggle"> 932 <button type="button" id="show-settings-link" class="button show-settings" aria-controls="screen-options-wrap" aria-expanded="false"><?php _e( 'Screen Options' ); ?></button> 933 933 </div> 934 934 <?php 935 935 endif; 936 if ( $this-> show_screen_options() ) :936 if ( $this->get_help_tabs() ) : 937 937 ?> 938 <div id=" screen-options-link-wrap" class="hide-if-no-js screen-meta-toggle">939 <button type="button" id=" show-settings-link" class="button show-settings" aria-controls="screen-options-wrap" aria-expanded="false"><?php _e( 'Screen Options' ); ?></button>938 <div id="contextual-help-link-wrap" class="hide-if-no-js screen-meta-toggle"> 939 <button type="button" id="contextual-help-link" class="button show-settings" aria-controls="contextual-help-wrap" aria-expanded="false"><?php _e( 'Help' ); ?></button> 940 940 </div> 941 941 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.