W3cubDocs

/WordPress

clean_comment_cache( int|array $ids )

Removes a comment from the object cache.

Parameters

$idsint|arrayrequired
Comment ID or an array of comment IDs to remove from cache.

Source

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

Hooks

do_action( ‘clean_comment_cache’, int $id )

Fires immediately after a comment has been removed from the object cache.

Changelog

Version Description
2.3.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/clean_comment_cache