wp_cache_set_comments_last_changed()WP 5.0.0

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

Хуков нет.

Возвращает

null. Ничего.

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

wp_cache_set_comments_last_changed();

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

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

Код wp_cache_set_comments_last_changed() WP 6.2.2

function wp_cache_set_comments_last_changed() {
	wp_cache_set( 'last_changed', microtime(), 'comment' );
}