12345678910111213141516171819202122232425 |
- <?php
- /**
- * Seedlet Theme: Customizer
- *
- * @package Seedlet
- * @since 1.0.0
- */
- /**
- * Render the site title for the selective refresh partial.
- *
- * @return void
- */
- function seedlet_customize_partial_blogname() {
- bloginfo( 'name' );
- }
- /**
- * Render the site tagline for the selective refresh partial.
- *
- * @return void
- */
- function seedlet_customize_partial_blogdescription() {
- bloginfo( 'description' );
- }
|