wpseek.com
WordPress开发者和主题制作者的搜索引擎



clean_category_cache › WordPress Function

Since2.1.0
已弃用n/a
clean_category_cache ( $id )
参数:
  • (int) $id Category ID
    Required: Yes
定义在:
文档:

Removes the category cache data based on ID.



源码

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