wpseek.com
WordPress开发者和主题制作者的搜索引擎



clean_attachment_cache › WordPress Function

Since3.0.0
已弃用n/a
clean_attachment_cache ( $id, $clean_terms = false )
参数: (2)
  • (int) $id The attachment ID in the cache to clean.
    Required: Yes
  • (bool) $clean_terms Optional. Whether to clean terms cache. Default false.
    Required: No
    默认: 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. This function will not run if $_wp_suspend_cache_invalidation is not empty.


源码

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