wpseek.com
A WordPress-centric search engine for devs and theme authors
clean_attachment_cache › WordPress Function
Since3.0.0
Deprecatedn/a
› clean_attachment_cache ( $id, $clean_terms = false )
Parameters: (2) |
|
Defined at: |
|
Codex: |
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. This function will not run if $_wp_suspend_cache_invalidation is not empty.Related Functions: clean_comment_cache, clean_term_cache, clean_page_cache, wp_clean_themes_cache, wp_clean_theme_json_cache
Source
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' ); } /** * Fires after the given attachment's cache is cleaned. * * @since 3.0.0 * * @param int $id Attachment ID. */ do_action( 'clean_attachment_cache', $id ); }