customizer.php 520 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Sophisticated Business: Customizer
  4. *
  5. * @package WordPress
  6. * @subpackage Sophisticated_Business
  7. * @since 1.0.0
  8. */
  9. /**
  10. * Change the label of the Site Title option.
  11. *
  12. * @param WP_Customize_Manager $wp_customize Theme Customizer object.
  13. */
  14. function sophisticated_business_customize_register( $wp_customize ) {
  15. $wp_customize->get_control( 'header_text' )->label = __( 'Display Site Title', 'sophisticated-business' );
  16. }
  17. add_action( 'customize_register', 'sophisticated_business_customize_register' );