根据ID删除类别缓存数据。
原型
clean_category_cache( int $id )
参数
$id
(int)
(Required)
类别ID
源文件
路径:wp-includes/category.php
<?php
...
function clean_category_cache( $id ) {
clean_term_cache( $id, 'category' );
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/clean_category_cache/