clean_page_cache action-hook . WP 2.5.0
Fires immediately after the given page's cache is cleaned.
Usage
add_action( 'clean_page_cache', 'action_function_name_6543' ); function action_function_name_6543( $post_id ){ // action... }
- $post_id(int)
- Post ID.
Changelog
Since 2.5.0 | Introduced. |
Where the hook is called
clean_page_cache
wp-includes/post.php 6967
do_action( 'clean_page_cache', $post->ID );