customizer.php 481 B

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