customizer.php 416 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Seedlet Theme: Customizer
  4. *
  5. * @package Seedlet
  6. * @since 1.0.0
  7. */
  8. /**
  9. * Render the site title for the selective refresh partial.
  10. *
  11. * @return void
  12. */
  13. function seedlet_customize_partial_blogname() {
  14. bloginfo( 'name' );
  15. }
  16. /**
  17. * Render the site tagline for the selective refresh partial.
  18. *
  19. * @return void
  20. */
  21. function seedlet_customize_partial_blogdescription() {
  22. bloginfo( 'description' );
  23. }