clean_comment_cache

The timeline below displays how wordpress function clean_comment_cache has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.3

//
// Cache.
//
/**
 * Removes a comment from the object cache.
 *
 * @since 2.3.0
 *
 * @param int|array $ids Comment ID or an array of comment IDs to remove from 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();
}

WordPress Version: 6.1

//
// Cache.
//
/**
 * Removes a comment from the object cache.
 *
 * @since 2.3.0
 *
 * @param int|array $ids Comment ID or an array of comment IDs to remove from 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('last_changed', microtime(), 'comment');
}

WordPress Version: 5.4

//
// Cache.
//
/**
 * Removes a comment from the object cache.
 *
 * @since 2.3.0
 *
 * @param int|array $ids Comment ID or an array of comment IDs to remove from cache.
 */
function clean_comment_cache($ids)
{
    foreach ((array) $ids as $id) {
        wp_cache_delete($id, 'comment');
        /**
         * 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');
}

WordPress Version: 4.5

//
// Cache
//
/**
 * Removes a comment from the object cache.
 *
 * @since 2.3.0
 *
 * @param int|array $ids Comment ID or an array of comment IDs to remove from cache.
 */
function clean_comment_cache($ids)
{
    foreach ((array) $ids as $id) {
        wp_cache_delete($id, 'comment');
        /**
         * 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');
}

WordPress Version: 3.9

//
// Cache
//
/**
 * Removes comment ID from the comment cache.
 *
 * @since 2.3.0
 *
 * @param int|array $ids Comment ID or array of comment IDs to remove from cache
 */
function clean_comment_cache($ids)
{
    foreach ((array) $ids as $id) {
        wp_cache_delete($id, 'comment');
    }
    wp_cache_set('last_changed', microtime(), 'comment');
}

WordPress Version: 3.7

//
// Cache
//
/**
 * Removes comment ID from the comment cache.
 *
 * @since 2.3.0
 * @package WordPress
 * @subpackage Cache
 *
 * @param int|array $ids Comment ID or array of comment IDs to remove from cache
 */
function clean_comment_cache($ids)
{
    foreach ((array) $ids as $id) {
        wp_cache_delete($id, 'comment');
    }
    wp_cache_set('last_changed', microtime(), 'comment');
}