函数原型
clean_comment_cache( int|array $ids )
函数描述
Removes a comment from the object cache.
是否弃用
未弃用
函数参数
-
$ids
int|array
Required - Comment ID or an array of comment IDs to remove from cache.
函数返回值
无
函数位置
File: wp-includes/comment.php.
函数源码
function clean_comment_cache( $ids ) {
$comment_ids = (array) $ids;
wp_cache_delete_multiple( $comment_ids, 'comment' );
foreach ( $comment_ids as $id ) {
/**
* Fires immediately after a comment has been removed from the object cache.
*
* @since 4.5.0
*
* @param int $id Comment ID.
*/
do_action( 'clean_comment_cache', $id );
}
wp_cache_set( 'last_changed', microtime(), 'comment' );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 2.3.0 | Introduced. |

