clean_category_cache( int $id )

Remove the category cache data based on ID.


Parameters

$id

(int) (Required) Category ID


Source

File: wp-includes/category.php

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


Changelog

Changelog
Version Description
WP-2.1.0 Introduced.