clean_category_cache( int $id )

Removes the category cache data based on ID.


Parameters

$id

(Required) Category ID


Source

File: wp-includes/category.php

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


Changelog

Changelog
Version Description
2.1.0 Introduced.