123456789101112131415161718 |
- <?php
- /**
- * Sophisticated Business: Customizer
- *
- * @package WordPress
- * @subpackage Sophisticated_Business
- * @since 1.0.0
- */
- /**
- * Change the label of the Site Title option.
- *
- * @param WP_Customize_Manager $wp_customize Theme Customizer object.
- */
- function sophisticated_business_customize_register( $wp_customize ) {
- $wp_customize->get_control( 'header_text' )->label = __( 'Display Site Title', 'sophisticated-business' );
- }
- add_action( 'customize_register', 'sophisticated_business_customize_register' );
|