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



clean_comment_cache › WordPress Function

Since2.3.0
已弃用n/a
clean_comment_cache ( $ids )
参数:
  • (int|array) $ids Comment ID or an array of comment IDs to remove from cache.
    Required: Yes
定义在:
文档:

Removes a comment from the object cache.



源码

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_comments_last_changed();
}