35 lines
560 B
PHP
Executable File
35 lines
560 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Hester Customizer sanitization callback functions.
|
|
*
|
|
* @package Hester
|
|
* @author Peregrine Themes
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
/**
|
|
* Do not allow direct script access.
|
|
*/
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Customizer callback for the Site Title.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
function hester_partial_blogname() {
|
|
return get_bloginfo( 'name', 'display' );
|
|
}
|
|
|
|
/**
|
|
* Customizer callback for the Site Tagline.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
function hester_partial_blogdescription() {
|
|
return get_bloginfo( 'description', 'display' );
|
|
}
|