Twenty Seventeen: Adds missing theme text domains to starter content
* Also, changes the top menu label so it has better context when read alone by assistive technology. Props anilbasnet. Fixes #38542. Built from https://develop.svn.wordpress.org/trunk@39001 git-svn-id: http://core.svn.wordpress.org/trunk@38943 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
42f804e4cb
commit
ce81b7a849
|
@ -57,7 +57,7 @@ function twentyseventeen_setup() {
|
|||
|
||||
// This theme uses wp_nav_menu() in two locations.
|
||||
register_nav_menus( array(
|
||||
'top' => __( 'Top', 'twentyseventeen' ),
|
||||
'top' => __( 'Top Menu', 'twentyseventeen' ),
|
||||
'social' => __( 'Social Links Menu', 'twentyseventeen' ),
|
||||
) );
|
||||
|
||||
|
@ -143,7 +143,7 @@ function twentyseventeen_setup() {
|
|||
|
||||
'nav_menus' => array(
|
||||
'top' => array(
|
||||
'name' => __( 'Top' ),
|
||||
'name' => __( 'Top', 'twentyseventeen' ),
|
||||
'items' => array(
|
||||
'page_home',
|
||||
'page_about',
|
||||
|
@ -152,7 +152,7 @@ function twentyseventeen_setup() {
|
|||
),
|
||||
),
|
||||
'social' => array(
|
||||
'name' => __( 'Social' ),
|
||||
'name' => __( 'Social', 'twentyseventeen' ),
|
||||
'items' => array(
|
||||
'link_yelp',
|
||||
'link_facebook',
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.7-beta1-39000';
|
||||
$wp_version = '4.7-beta1-39001';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue