themes-wordpress/seedlet/inc/customizer.php
Jeff Ong 3f93343a9d
Seedlet: Fix Theme Review bugs (#2285)
* Fix package name, missed escapes, and variable prefixing.

* Remove accidental commit of experimental link color commenting out.

* Remove a line to trigger a diff.

* Remove second translation function.

* Rename menu variable.

* Update theme URI.

* Prefix global message variable.
2020-07-29 13:44:19 -04:00

25 lines
416 B
PHP
Executable file

<?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' );
}