wp_cache_set_home()
Хуков нет.
Возвращает
null. Ничего (null).
Использование
wp_cache_set_home();
Код wp_cache_set_home() wp cache set home WPSCache 3.1.1
function wp_cache_set_home() {
global $wp_cache_is_home;
$wp_cache_is_home = ( is_front_page() || is_home() );
if ( $wp_cache_is_home && is_paged() )
$wp_cache_is_home = false;
}