wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



clean_page_cache › WordPress Function

Da2.0.0
Deprecato3.4.0
clean_page_cache ( $id )
Parametri:
  • (int) $id Page ID to clean
    Richiesto:
Vedi:
Definito a:
Codex:

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'.


Sorgenti

function clean_page_cache( $id ) {
	_deprecated_function( __FUNCTION__, '3.4.0', 'clean_post_cache()' );

	clean_post_cache( $id );
}