wpseek.com
A WordPress-centric search engine for devs and theme authors



update_page_cache › WordPress Function

Since1.5.1
Deprecated3.4.0
update_page_cache ( $pages )
Parameters:
  • (array) $pages list of page objects
    Required: Yes
See:
Defined at:
Codex:

Alias of update_post_cache().



Source

function update_page_cache( &$pages ) {
	_deprecated_function( __FUNCTION__, '3.4.0', 'update_post_cache()' );

	update_post_cache( $pages );
}