WordPress.org

Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

Function Reference/clean post cache

Description

Will clean the post in the cache.

Cleaning means delete from the cache of the post. Will call to clean the term object cache associated with the post ID.

clean_post_cache will call itself recursively for each child post.

Will not run if $_wp_suspend_cache_invalidation is not empty. See wp_suspend_cache_invalidation().

Usage

<?php clean_post_cache$id ?>

Parameters

$id
(integer) (required) The Post ID in the cache to clean
Default: None

Return Values

(void) 
This function does not return a value.

Examples

Notes

  • Uses: do_action() Calls 'clean_post_cache' on post ID.
  • Uses global: (boolean) $_wp_suspend_cache_invalidation
  • Uses global: (object) $wpdb
  • Uses wp_cache_delete

Change Log

Since: 2.0.0

Source File

clean_post_cache() is located in wp-includes/post.php.

Related