wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



clean_page_cache › WordPress Function

Od2.0.0
Przestarzały3.4.0
clean_page_cache ( $id )
Parametry:
  • (int) $id Page ID to clean
    Wymagane: Tak
Zobacz:
Zdefiniowane na:
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'.


Źródło

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

	clean_post_cache( $id );
}