wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



clean_page_cache › WordPress Function

Seit2.0.0
Veraltet3.4.0
clean_page_cache ( $id )
Parameter:
  • (int) $id Page ID to clean
    Erforderlich: Ja
Siehe:
Definiert in:
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'.


Quellcode

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

	clean_post_cache( $id );
}