update_page_cache( array $pages )

This function has been deprecated. Use update_post_cache() instead.

Alias of update_post_cache() .

Description

See also

Parameters

$pagesarrayrequired
list of page objects

Source

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

	update_post_cache( $pages );
}

Changelog

VersionDescription
3.4.0Use update_post_cache()
1.5.1Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.