customizer.php 535 B

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