From bd52f81e873bdd67fc9426c999d7fe24cc2e6b87 Mon Sep 17 00:00:00 2001 From: Joe McGill Date: Thu, 3 Nov 2016 21:33:47 +0000 Subject: [PATCH] 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 --- src/wp-includes/class-wp-customize-manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', ) );