wp_cache_set_sites_last_changed()WP 5.1.0

Sets the last changed time for the 'sites' cache group.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

wp_cache_set_sites_last_changed();

Список изменений

С версии 5.1.0 Введена.

Код wp_cache_set_sites_last_changed() WP 6.4.3

function wp_cache_set_sites_last_changed() {
	wp_cache_set_last_changed( 'sites' );
}