From b0f06b48aa76c0a23ac2cc63da951e65e364bd97 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 13 Dec 2015 17:49:51 +0000 Subject: [PATCH] Customizer: Change "Display Header Text" checkbox label to "Display Site Title and Tagline", to make it clearer that it affects both settings. Props juanfra, vlad.olaru. Fixes #31829. git-svn-id: https://develop.svn.wordpress.org/trunk@35899 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 3ec62ba366..a00ebaf840 100644 --- a/src/wp-includes/class-wp-customize-manager.php +++ b/src/wp-includes/class-wp-customize-manager.php @@ -1881,7 +1881,7 @@ final class WP_Customize_Manager { // With custom value $this->add_control( 'display_header_text', array( 'settings' => 'header_textcolor', - 'label' => __( 'Display Header Text' ), + 'label' => __( 'Display Site Title and Tagline' ), 'section' => 'title_tagline', 'type' => 'checkbox', 'priority' => 40,