Update Label Text

This commit is contained in:
torres126 2019-03-31 21:06:56 +01:00 committed by GitHub
parent ceddf5b0af
commit 1a8eee0c88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,6 +14,7 @@ function dyad_2_customize_register( $wp_customize ) {
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
$wp_customize->get_control( 'display_header_text' )->label = __( 'Display Site Title', 'dyad-2' );
}
add_action( 'customize_register', 'dyad_2_customize_register' );