customizer.php 517 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Professional Business: Customizer
  4. *
  5. * @package WordPress
  6. * @subpackage Professional_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 professional_business_customize_register( $wp_customize ) {
  15. $wp_customize->get_control( 'header_text' )->label = __( 'Display Site Title', 'professional-business' );
  16. }
  17. add_action( 'customize_register', 'professional_business_customize_register' );