Themes: Introduce responsive embeds support.
Responsive embeds is a way for a theme to opt in to WordPress dynamically scaling the width/height of an embed. When a theme supports responsive embeds, a `wp-embed-responsive` class is added to the `<body>` tag. This information is also presented through the REST API for clients to respect. Merges [43790] and [43791] from the 5.0 branch to trunk. Props desrosj, danielbachhuber, ocean90. Fixes #45125. git-svn-id: https://develop.svn.wordpress.org/trunk@44138 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
3f8768a577
commit
82b3fac279
@ -760,6 +760,10 @@ function get_body_class( $class = '' ) {
|
||||
$classes[] = 'wp-custom-logo';
|
||||
}
|
||||
|
||||
if ( current_theme_supports( 'responsive-embeds' ) ) {
|
||||
$classes[] = 'wp-embed-responsive';
|
||||
}
|
||||
|
||||
$page = $wp_query->get( 'page' );
|
||||
|
||||
if ( ! $page || $page < 2 ) {
|
||||
|
@ -111,8 +111,9 @@ class WP_REST_Themes_Controller extends WP_REST_Controller {
|
||||
$formats = array_merge( array( 'standard' ), $formats );
|
||||
$data['theme_supports']['formats'] = $formats;
|
||||
|
||||
$data['theme_supports']['post-thumbnails'] = false;
|
||||
$post_thumbnails = get_theme_support( 'post-thumbnails' );
|
||||
$data['theme_supports']['post-thumbnails'] = false;
|
||||
$data['theme_supports']['responsive-embeds'] = (bool) get_theme_support( 'responsive-embeds' );
|
||||
$post_thumbnails = get_theme_support( 'post-thumbnails' );
|
||||
|
||||
if ( $post_thumbnails ) {
|
||||
// $post_thumbnails can contain a nested array of post types.
|
||||
@ -156,16 +157,21 @@ class WP_REST_Themes_Controller extends WP_REST_Controller {
|
||||
'type' => 'array',
|
||||
'readonly' => true,
|
||||
'properties' => array(
|
||||
'formats' => array(
|
||||
'formats' => array(
|
||||
'description' => __( 'Post formats supported.' ),
|
||||
'type' => 'array',
|
||||
'readonly' => true,
|
||||
),
|
||||
'post-thumbnails' => array(
|
||||
'post-thumbnails' => array(
|
||||
'description' => __( 'Whether the theme supports post thumbnails.' ),
|
||||
'type' => array( 'array', 'bool' ),
|
||||
'readonly' => true,
|
||||
),
|
||||
'responsive-embeds' => array(
|
||||
'description' => __( 'Whether the theme supports responsive embedded content.' ),
|
||||
'type' => 'bool',
|
||||
'readonly' => true,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
@ -2318,12 +2318,14 @@ function get_theme_starter_content() {
|
||||
* @since 4.1.0 The `title-tag` feature was added
|
||||
* @since 4.5.0 The `customize-selective-refresh-widgets` feature was added
|
||||
* @since 4.7.0 The `starter-content` feature was added
|
||||
* @since 5.0.0 The `responsive-embeds` feature was added.
|
||||
*
|
||||
* @global array $_wp_theme_features
|
||||
*
|
||||
* @param string $feature The feature being added. Likely core values include 'post-formats',
|
||||
* 'post-thumbnails', 'html5', 'custom-logo', 'custom-header-uploads',
|
||||
* 'custom-header', 'custom-background', 'title-tag', 'starter-content', etc.
|
||||
* 'custom-header', 'custom-background', 'title-tag', 'starter-content',
|
||||
* 'responsive-embeds', etc.
|
||||
* @param mixed $args,... Optional extra arguments to pass along with certain features.
|
||||
* @return void|bool False on failure, void otherwise.
|
||||
*/
|
||||
|
@ -189,9 +189,10 @@ class WP_Test_REST_Themes_Controller extends WP_Test_REST_Controller_Testcase {
|
||||
$this->assertEquals( 1, count( $properties ) );
|
||||
$this->assertArrayHasKey( 'theme_supports', $properties );
|
||||
|
||||
$this->assertEquals( 2, count( $properties['theme_supports']['properties'] ) );
|
||||
$this->assertEquals( 3, count( $properties['theme_supports']['properties'] ) );
|
||||
$this->assertArrayHasKey( 'formats', $properties['theme_supports']['properties'] );
|
||||
$this->assertArrayHasKey( 'post-thumbnails', $properties['theme_supports']['properties'] );
|
||||
$this->assertArrayHasKey( 'responsive-embeds', $properties['theme_supports']['properties'] );
|
||||
}
|
||||
|
||||
/**
|
||||
@ -222,6 +223,35 @@ class WP_Test_REST_Themes_Controller extends WP_Test_REST_Controller_Testcase {
|
||||
$this->assertSame( array( 'standard', 'aside', 'video' ), $result[0]['theme_supports']['formats'] );
|
||||
}
|
||||
|
||||
/**
|
||||
* Test when a theme does not support responsive embeds.
|
||||
*
|
||||
* @ticket 45016
|
||||
*/
|
||||
public function test_theme_supports_responsive_embeds_false() {
|
||||
remove_theme_support( 'responsive-embeds' );
|
||||
$response = self::perform_active_theme_request();
|
||||
|
||||
$result = $response->get_data();
|
||||
$this->assertTrue( isset( $result[0]['theme_supports'] ) );
|
||||
$this->assertTrue( isset( $result[0]['theme_supports']['responsive-embeds'] ) );
|
||||
$this->assertFalse( $result[0]['theme_supports']['responsive-embeds'] );
|
||||
}
|
||||
|
||||
/**
|
||||
* Test when a theme supports responsive embeds.
|
||||
*
|
||||
* @ticket 45016
|
||||
*/
|
||||
public function test_theme_supports_responsive_embeds_true() {
|
||||
remove_theme_support( 'responsive-embeds' );
|
||||
add_theme_support( 'responsive-embeds' );
|
||||
$response = self::perform_active_theme_request();
|
||||
$result = $response->get_data();
|
||||
$this->assertTrue( isset( $result[0]['theme_supports'] ) );
|
||||
$this->assertTrue( $result[0]['theme_supports']['responsive-embeds'] );
|
||||
}
|
||||
|
||||
/**
|
||||
* Test when a theme does not support post thumbnails.
|
||||
*
|
||||
|
@ -192,4 +192,16 @@ class Tests_Theme_Support extends WP_UnitTestCase {
|
||||
$this->assertEmpty( get_registered_nav_menus() );
|
||||
$this->assertFalse( current_theme_supports( 'menus' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 45125
|
||||
*/
|
||||
function test_responsive_embeds() {
|
||||
add_theme_support( 'responsive-embeds' );
|
||||
$this->assertTrue( current_theme_supports( 'responsive-embeds' ) );
|
||||
remove_theme_support( 'responsive-embeds' );
|
||||
$this->assertFalse( current_theme_supports( 'responsive-embeds' ) );
|
||||
add_theme_support( 'responsive-embeds' );
|
||||
$this->assertTrue( current_theme_supports( 'responsive-embeds' ) );
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user