clean_attachment_cache [ WordPress Function ]
| Parameters: |
|
| Uses: | |
| Defined at: |
|
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. See wp_suspend_cache_invalidation().
Source
<?php
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);
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Docs for page post.php
clean_attachment_cache (line 4494). Will clean the attachment in the cache. Cleaning means delete from the cache. Optionally will clean the term object cache ...
phpdoc.wordpress.org - php /** * Media Library administration panel. - WordPress SVN
... if ( !current_user_can( 'edit_post', $att_id ) ) continue; $attach[] = $att_id; clean_attachment_cache( $att_id ); } if ( ! empty( $attach ) ) { $attach = implode( ',' ...
core.svn.wordpress.org - clean_attachment_cache() WordPress function reference ...
clean_attachment_cache(). Will clean the attachment in the cache. Cleaning means delete from the cache. Optionally will clean the term object cache associated ...
queryposts.com - PHP Cross Reference - WordPress - Source: /wp-admin/upload.php
... 67 68 if ( !current_user_can( 'edit_post', $att_id ) ) 69 continue; 70 71 $attach[] = $att_id; 72 clean_attachment_cache( $att_id ); 73 } 74 75 if ( ! empty( $attach ) ...
phpcrossref.com