Changeset 52128
- Timestamp:
- 11/10/2021 07:54:51 PM (3 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/kses.php
r52069 r52128 2085 2085 * Sanitizes global styles user content removing unsafe rules. 2086 2086 * 2087 * @since 5.9.0 2088 * 2087 2089 * @param string $data Post content to filter. 2088 2090 * @return string Filtered post content with unsafe rules removed. -
trunk/src/wp-includes/post.php
r52110 r52128 450 450 'wp_global_styles', 451 451 array( 452 'label' => _ _( 'Global Styles' ),453 'description' => __( ' Post type for storing user design tokens.' ),452 'label' => _x( 'Global Styles', 'post type general name' ), 453 'description' => __( 'Global styles to include in themes.' ), 454 454 'public' => false, 455 455 '_builtin' => true, /* internal use only. don't use this when registering your own post type. */ … … 500 500 'items_list' => __( 'Navigation Menus list' ), 501 501 ), 502 'description' => __( 'Navigation menus.' ),503 502 'public' => false, 504 503 '_builtin' => true, /* internal use only. don't use this when registering your own post type. */ -
trunk/src/wp-includes/rest-api.php
r52079 r52128 295 295 296 296 // Block Renderer. 297 $controller = new WP_REST_Block_Renderer_Controller ;297 $controller = new WP_REST_Block_Renderer_Controller(); 298 298 $controller->register_routes(); 299 299
Note: See TracChangeset
for help on using the changeset viewer.