customizer.php 400 B

123456789101112
  1. <?php
  2. /**
  3. * Change the label of the Site Title option.
  4. *
  5. * @param WP_Customize_Manager $wp_customize Theme Customizer object.
  6. *
  7. * @package Calm_business
  8. */
  9. function calm_business_customize_register( $wp_customize ) {
  10. $wp_customize->get_control( 'header_text' )->label = __( 'Display Site Title', 'calm_business' );
  11. }
  12. add_action( 'customize_register', 'calm_business_customize_register' );