customizer.php 443 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Modern Business: Customizer
  4. *
  5. * @package Modern_Business
  6. */
  7. /**
  8. * Change the label of the Site Title option.
  9. *
  10. * @param WP_Customize_Manager $wp_customize Theme Customizer object.
  11. */
  12. function modern_business_customize_register( $wp_customize ) {
  13. $wp_customize->get_control( 'header_text' )->label = __( 'Display Site Title', 'modern-business' );
  14. }
  15. add_action( 'customize_register', 'modern_business_customize_register' );