customizer.php 571 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Custom functions that act independently of the theme templates.
  4. *
  5. * Eventually, some of the functionality here could be replaced by core features.
  6. *
  7. * @package Elegant_Business
  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 elegant_business_customize_register( $wp_customize ) {
  15. $wp_customize->get_control( 'header_text' )->label = __( 'Display Site Title', 'elegant-business' );
  16. }
  17. add_action( 'customize_register', 'elegant_business_customize_register' );