From 50b2c6cf2c4a1d08b5263dd6a1413f40de8e9091 Mon Sep 17 00:00:00 2001 From: Joe McGill Date: Fri, 4 Nov 2016 17:12:28 +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. Built from https://develop.svn.wordpress.org/trunk@39128 git-svn-id: http://core.svn.wordpress.org/trunk@39068 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-manager.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index 6e8faf2a8d..8d976486dc 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/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', ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index c999eb2d38..77ec8bd80f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @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.