clean_page_cache()

最后更新于:2021-11-25 20:34:06

clean_page_cache( int$id)

Will clean the page in the cache.

参数

$id

(int) (Required) Page ID to clean

源文件

文件: gc-includes/deprecated.php

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

	clean_post_cache( $id );
}