clean_attachment_cache
函数
clean_attachment_cache ( $id, $clean_terms = false )
- 参数
-
-
(int)
$id
The attachment ID in the cache to clean.- Required: 是
-
(bool)
$clean_terms
Optional. Whether to clean terms cache. Default false.- Required: 否
- Default: false
-
(int)
- 定义位置
-
-
wp-includes/post.php
, line 7520
-
wp-includes/post.php
- 引入
- 3.0.0
- 弃用
- –
将清理缓存中的附件。
清理意味着从缓存中删除。也可以选择清理与该附件ID相关的术语对象缓存。
如果$_wp_suspend_cache_invalidation不是空的,这个函数就不会运行。
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 ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。