mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
General: Minor fixes to Global Style related code.
Follow up to [52041,52049-52052,52054,52106,52108-52110]. Props swisspidy, TobiasBg, spacedmonkey, kebbet, oandregal. See #54336. git-svn-id: https://develop.svn.wordpress.org/trunk@52128 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -449,8 +449,8 @@ function create_initial_post_types() {
|
||||
register_post_type(
|
||||
'wp_global_styles',
|
||||
array(
|
||||
'label' => __( 'Global Styles' ),
|
||||
'description' => __( 'Post type for storing user design tokens.' ),
|
||||
'label' => _x( 'Global Styles', 'post type general name' ),
|
||||
'description' => __( 'Global styles to include in themes.' ),
|
||||
'public' => false,
|
||||
'_builtin' => true, /* internal use only. don't use this when registering your own post type. */
|
||||
'show_ui' => false,
|
||||
@@ -499,7 +499,6 @@ function create_initial_post_types() {
|
||||
'items_list_navigation' => __( 'Navigation Menus list navigation' ),
|
||||
'items_list' => __( 'Navigation Menus list' ),
|
||||
),
|
||||
'description' => __( 'Navigation menus.' ),
|
||||
'public' => false,
|
||||
'_builtin' => true, /* internal use only. don't use this when registering your own post type. */
|
||||
'has_archive' => false,
|
||||
|
||||
Reference in New Issue
Block a user