clean_attachment_cache

Definition:
function clean_attachment_cache($id, $clean_terms = false) {}

Will clean the attachment in the cache.
Cleaning means delete from the cache. Optionally will clean the term object cache associated with the attachment ID.

Parameters

  • int $id: The attachment ID in the cache to clean
  • bool $clean_terms: optional. Whether to clean terms cache

Defined actions

  • clean_attachment_cache
    do_action('clean_attachment_cache', $id);

Source code

function clean_attachment_cache($id, $clean_terms = false) {

	global $_wp_suspend_cache_invalidation;



	if ( !empty($_wp_suspend_cache_invalidation) )

		return;



	$id = (int) $id;



	wp_cache_delete($id, 'posts');

	wp_cache_delete($id, 'post_meta');



	if ( $clean_terms )

		clean_object_term_cache($id, 'attachment');



	do_action('clean_attachment_cache', $id);

}

615

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: