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 (null).
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 |
clean_page_cache() clean page cache code WP 6.7.1
function clean_page_cache( $id ) { _deprecated_function( __FUNCTION__, '3.4.0', 'clean_post_cache()' ); clean_post_cache( $id ); }