Changeset 8245
- Timestamp:
- 02/14/2019 04:52:09 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg/header.php
r8241 r8245 12 12 namespace WordPressdotorg\Theme; 13 13 14 $GLOBALS['wporg_global_header_options'] = array( 15 'in_wrapper' => '<a class="skip-link screen-reader-text" href="#content">' . esc_html( 'Skip to content', 'wporg' ) . '</a>', 16 ); 14 global $wporg_global_header_options; 15 if ( !isset( $wporg_global_header_options['in_wrapper'] ) ) 16 $wporg_global_header_options['in_wrapper'] = ''; 17 $wporg_global_header_options['in_wrapper'] .= '<a class="skip-link screen-reader-text" href="#content">' . esc_html( 'Skip to content', 'wporg' ) . '</a>'; 18 17 19 get_template_part( 'header', 'wporg' ); 18 20 ?>
Note: See TracChangeset
for help on using the changeset viewer.