Changeset 53661 for branches/6.0
- Timestamp:
- 07/05/2022 03:02:03 PM (2 years ago)
- Location:
- branches/6.0
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.0
-
branches/6.0/src/wp-includes/theme.php
r53417 r53661 3802 3802 * 3803 3803 * @since 5.5.0 3804 * @since 6.1.0 The `block-templates` feature was added. 3804 3805 */ 3805 3806 function create_initial_theme_features() { … … 3815 3816 array( 3816 3817 'description' => __( 'Whether posts and comments RSS feed links are added to head.' ), 3818 'show_in_rest' => true, 3819 ) 3820 ); 3821 register_theme_feature( 3822 'block-templates', 3823 array( 3824 'description' => __( 'Whether a theme uses block-based templates.' ), 3817 3825 'show_in_rest' => true, 3818 3826 ) -
branches/6.0/tests/phpunit/tests/rest-api/rest-themes-controller.php
r52399 r53661 388 388 $this->assertArrayHasKey( 'align-wide', $theme_supports ); 389 389 $this->assertArrayHasKey( 'automatic-feed-links', $theme_supports ); 390 $this->assertArrayHasKey( 'block-templates', $theme_supports ); 390 391 $this->assertArrayHasKey( 'custom-header', $theme_supports ); 391 392 $this->assertArrayHasKey( 'custom-background', $theme_supports ); … … 406 407 $this->assertArrayHasKey( 'title-tag', $theme_supports ); 407 408 $this->assertArrayHasKey( 'wp-block-styles', $theme_supports ); 408 $this->assertCount( 2 0, $theme_supports );409 $this->assertCount( 21, $theme_supports ); 409 410 } 410 411
Note: See TracChangeset
for help on using the changeset viewer.