mirror of
git://develop.git.wordpress.org/
synced 2025-03-20 12:00:03 +01:00
Editor: Do not translate the title of "Custom Styles" specific posts.
This change removes the internationalization of the "Custom Styles" specific posts as the post title being hardcoded is consistent with `wp_template_part` and `wp_template` post types, and is not publicly visible, except in the database. Moreover, using consistent "Custom Styles" post title may make is easier to retrieve the related posts in the database. Props antonvlasenko, audrasjb, desrosj, hellofromTonya. Fixes #54518. git-svn-id: https://develop.svn.wordpress.org/trunk@52280 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
4fd0db227d
commit
67d8f09f26
@ -273,7 +273,7 @@ class WP_Theme_JSON_Resolver {
|
||||
array(
|
||||
'post_content' => '{"version": ' . WP_Theme_JSON::LATEST_SCHEMA . ', "isGlobalStylesUserThemeJSON": true }',
|
||||
'post_status' => 'publish',
|
||||
'post_title' => __( 'Custom Styles', 'default' ),
|
||||
'post_title' => 'Custom Styles',
|
||||
'post_type' => $post_type_filter,
|
||||
'post_name' => 'wp-global-styles-' . urlencode( wp_get_theme()->get_stylesheet() ),
|
||||
'tax_input' => array(
|
||||
|
Loading…
x
Reference in New Issue
Block a user