Sets the last changed time for the ‘terms’ cache group.
Source
function wp_cache_set_terms_last_changed() {
wp_cache_set_last_changed( 'terms' );
}
Changelog
Version | Description |
---|---|
5.0.0 | Introduced. |
CARVIEW |
Sets the last changed time for the ‘terms’ cache group.
function wp_cache_set_terms_last_changed() {
wp_cache_set_last_changed( 'terms' );
}
Uses | Description |
---|---|
wp_cache_set_last_changed()wp-includes/functions.php | Sets last changed date for the specified cache group to now. |
Used by | Description |
---|---|
clean_taxonomy_cache()wp-includes/taxonomy.php | Cleans the caches for a taxonomy. |
clean_object_term_cache()wp-includes/taxonomy.php | Removes the taxonomy relationship to terms from the cache. |
clean_term_cache()wp-includes/taxonomy.php | Removes all of the term IDs from the cache. |
wp_set_object_terms()wp-includes/taxonomy.php | Creates term and taxonomy relationships. |
wp_remove_object_terms()wp-includes/taxonomy.php | Removes term(s) associated with a given object. |
Version | Description |
---|---|
5.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.