themes-wordpress/seedlet/inc/customizer.php
2020-06-10 12:58:55 -04:00

26 lines
441 B
PHP
Executable file

<?php
/**
* Seedlet Theme: Customizer
*
* @package WordPress
* @subpackage 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' );
}