diff options
author | Joe McGill <joemcgill@git.wordpress.org> | 2016-11-03 21:33:47 +0000 |
---|---|---|
committer | Joe McGill <joemcgill@git.wordpress.org> | 2016-11-03 21:33:47 +0000 |
commit | bd52f81e873bdd67fc9426c999d7fe24cc2e6b87 (patch) | |
tree | 45f5612c4aff820810dd02038e45d13d807f8f5b /src/wp-includes/class-wp-customize-manager.php | |
parent | 8a08cfc840f4572b93b12d5ef15477176d082268 (diff) | |
download | wordpress-bd52f81e873bdd67fc9426c999d7fe24cc2e6b87.tar.gz wordpress-bd52f81e873bdd67fc9426c999d7fe24cc2e6b87.zip |
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.
git-svn-id: https://develop.svn.wordpress.org/trunk@39128 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'src/wp-includes/class-wp-customize-manager.php')
-rw-r--r-- | src/wp-includes/class-wp-customize-manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wp-includes/class-wp-customize-manager.php b/src/wp-includes/class-wp-customize-manager.php index 6e8faf2a8d..8d976486dc 100644 --- a/src/wp-includes/class-wp-customize-manager.php +++ b/src/wp-includes/class-wp-customize-manager.php @@ -3458,7 +3458,7 @@ final class WP_Customize_Manager { $this->add_control( 'external_header_video', array( 'theme_supports' => array( 'custom-header', 'video' ), 'type' => 'url', - 'description' => __( 'Or, enter a YouTube or Vimeo URL:' ), + 'description' => __( 'Or, enter a YouTube URL:' ), 'section' => 'header_image', ) ); |