clean_page_cache()
Deprecated from version 3.4.0. It is no longer supported and can be removed in future releases. Use clean_post_cache instead.
Will clean the page in the cache.
Clean (read: delete) page from cache that matches $id. Will also clean cache associated with 'all_page_ids' and get_pages.
No Hooks.
Return
null
. Nothing.
Usage
clean_page_cache( $id );
- $id(int) (required)
- Page ID to clean
Notes
- See: clean_post_cache()
Changelog
Since 2.0.0 | Introduced. | |
Deprecated Since 3.4.0 | Use clean_post_cache |
Code of clean_page_cache() clean page cache WP 6.0
function clean_page_cache( $id ) { _deprecated_function( __FUNCTION__, '3.4.0', 'clean_post_cache()' ); clean_post_cache( $id ); }