Twenty Twenty-One: Add missing escaping for the "Secondary menu" label.
Props muhammadfaizanhaidar, teucrium, sabernhardt, mukesh27, SergeyBiryukov. Fixes #54127. Built from https://develop.svn.wordpress.org/trunk@51820 git-svn-id: http://core.svn.wordpress.org/trunk@51427 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5932bb0f8e
commit
8feb26bcfe
|
@ -74,7 +74,7 @@ if ( ! function_exists( 'twenty_twenty_one_setup' ) ) {
|
|||
register_nav_menus(
|
||||
array(
|
||||
'primary' => esc_html__( 'Primary menu', 'twentytwentyone' ),
|
||||
'footer' => __( 'Secondary menu', 'twentytwentyone' ),
|
||||
'footer' => esc_html__( 'Secondary menu', 'twentytwentyone' ),
|
||||
)
|
||||
);
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.9-alpha-51819';
|
||||
$wp_version = '5.9-alpha-51820';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue