From ef9eb5f26e877c4401725867e3d5bda0173176d6 Mon Sep 17 00:00:00 2001 From: Joe McGill Date: Fri, 11 Nov 2016 23:23:06 +0000 Subject: [PATCH] Customize: Rename "Header Visuals" to "Header Media". MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "Header Visuals" is a bit vague since the title/tagline are arguably also “header visuals”. "Header Media" is more descriptive and is consistent with how we refer to images/videos throughout core. Props bradyvercher. Fixes #38756. git-svn-id: https://develop.svn.wordpress.org/trunk@39205 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 ecb50a21ab..150b123147 100644 --- a/src/wp-includes/class-wp-customize-manager.php +++ b/src/wp-includes/class-wp-customize-manager.php @@ -3406,7 +3406,7 @@ final class WP_Customize_Manager { /* Custom Header */ if ( current_theme_supports( 'custom-header', 'video' ) ) { - $title = __( 'Header Visuals' ); + $title = __( 'Header Media' ); $description = __( 'If you add a video, the image will be used as a fallback while the video loads.' ); $width = absint( get_theme_support( 'custom-header', 'width' ) ); $height = absint( get_theme_support( 'custom-header', 'height' ) );