Question
I would like to rename "Header Image" in the customizer section to "Header Logo". I've found several codes on the internet but they won't work.—April, Studio Press Forum
Answer
Add this to your theme's functions.php.
1 2 3 4 | function my_custom_header_title( $wp_customize ) { $wp_customize->get_section( 'header_image' )->title = __( 'Header Logo', 'digital' ); } add_action( 'customize_register', 'my_custom_header_title') |
Leave a Reply