clean_category_cache( int $id )

Removes the category cache data based on ID.


Parameters

$id int Required
Category ID

Top ↑

Source

File: wp-includes/category.php. View all references

function clean_category_cache( $id ) {
	clean_term_cache( $id, 'category' );
}


Top ↑

Changelog

Changelog
Version Description
2.1.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.