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
This commit is contained in:
Joe McGill 2016-11-03 21:33:47 +00:00
parent 8a08cfc840
commit bd52f81e87
1 changed files with 1 additions and 1 deletions

View File

@ -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',
) );