customizer.php 441 B

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