Customize: Remove Vimeo reference from description for external header videos.
Vimeo's API requires a Pro account to display videos as background videos (i.e., without player controls), thus we shouldn't support Vimeo URLs by default in custom header videos. This removes the reference of Vimeo from the control description in the customizer. Fixes #38544. Built from https://develop.svn.wordpress.org/trunk@39128 git-svn-id: http://core.svn.wordpress.org/trunk@39068 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b1ee6c64d9
commit
50b2c6cf2c
|
@ -3458,7 +3458,7 @@ final class WP_Customize_Manager {
|
||||||
$this->add_control( 'external_header_video', array(
|
$this->add_control( 'external_header_video', array(
|
||||||
'theme_supports' => array( 'custom-header', 'video' ),
|
'theme_supports' => array( 'custom-header', 'video' ),
|
||||||
'type' => 'url',
|
'type' => 'url',
|
||||||
'description' => __( 'Or, enter a YouTube or Vimeo URL:' ),
|
'description' => __( 'Or, enter a YouTube URL:' ),
|
||||||
'section' => 'header_image',
|
'section' => 'header_image',
|
||||||
) );
|
) );
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.7-beta1-39127';
|
$wp_version = '4.7-beta1-39128';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue