diff --git a/wp-content/themes/twentyseventeen/functions.php b/wp-content/themes/twentyseventeen/functions.php index 4090cbfad8..5a0c03cd5a 100644 --- a/wp-content/themes/twentyseventeen/functions.php +++ b/wp-content/themes/twentyseventeen/functions.php @@ -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', diff --git a/wp-includes/version.php b/wp-includes/version.php index b378253a89..b3e851db05 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.