Changeset 8257
- Timestamp:
- 02/15/2019 08:11:47 AM (6 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/header.php
r8248 r8257 22 22 if ( !isset( $wporg_global_header_options['in_wrapper'] ) ) 23 23 $wporg_global_header_options['in_wrapper'] = ''; 24 $wporg_global_header_options['in_wrapper'] .= '<a class="skip-link screen-reader-text" href="#main">' . esc_html ( 'Skip to content', 'wporg-plugins' ) . '</a>';24 $wporg_global_header_options['in_wrapper'] .= '<a class="skip-link screen-reader-text" href="#main">' . esc_html__( 'Skip to content', 'wporg-plugins' ) . '</a>'; 25 25 require WPORGPATH . 'header.php'; 26 26 ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/header.php
r8247 r8257 4 4 if ( !isset( $wporg_global_header_options['in_wrapper'] ) ) 5 5 $wporg_global_header_options['in_wrapper'] = ''; 6 $wporg_global_header_options['in_wrapper'] .= '<a class="skip-link screen-reader-text" href="#pagebody">' . esc_html ( 'Skip to content', 'wporg-showcase' ) . '</a>';6 $wporg_global_header_options['in_wrapper'] .= '<a class="skip-link screen-reader-text" href="#pagebody">' . esc_html__( 'Skip to content', 'wporg-showcase' ) . '</a>'; 7 7 8 8 $prefix = is_ssl() ? 'https://' : 'http://s.'; -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/header.php
r8246 r8257 22 22 if ( !isset( $wporg_global_header_options['in_wrapper'] ) ) 23 23 $wporg_global_header_options['in_wrapper'] = ''; 24 $wporg_global_header_options['in_wrapper'] .= '<a class="skip-link screen-reader-text" href="#content">' . esc_html ( 'Skip to content', 'wporg-forums' ) . '</a>';24 $wporg_global_header_options['in_wrapper'] .= '<a class="skip-link screen-reader-text" href="#content">' . esc_html__( 'Skip to content', 'wporg-forums' ) . '</a>'; 25 25 wporg_get_global_header(); 26 26 ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg/header.php
r8245 r8257 15 15 if ( !isset( $wporg_global_header_options['in_wrapper'] ) ) 16 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>';17 $wporg_global_header_options['in_wrapper'] .= '<a class="skip-link screen-reader-text" href="#content">' . esc_html__( 'Skip to content', 'wporg' ) . '</a>'; 18 18 19 19 get_template_part( 'header', 'wporg' );
Note: See TracChangeset
for help on using the changeset viewer.