cl01/wp-content/themes/hester/inc/customizer/customizer-partials.php
2025-02-24 12:39:24 +08:00

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