
* 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.
25 lines
416 B
PHP
Executable file
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' );
|
|
}
|