wp_cache_set_terms_last_changed()WP 5.0.0

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

No Hooks.

Return

null. Nothing (null).

Usage

wp_cache_set_terms_last_changed();

Changelog

Since 5.0.0 Introduced.

wp_cache_set_terms_last_changed() code WP 6.5.2

function wp_cache_set_terms_last_changed() {
	wp_cache_set_last_changed( 'terms' );
}