wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_get_nocache_headers › WordPress Function

Since2.8.0
已弃用n/a
wp_get_nocache_headers ( 没有参数 )
返回:
  • (array) The associative array of header names and field values.
定义在:
文档:
Change Log:
  • 6.3.0

Gets the HTTP header information to prevent caching.

The several different headers cover the different ways cache prevention is handled by different browsers.


源码

function wp_get_nocache_headers() {
	$cache_control = ( function_exists( 'is_user_logged_in' ) && is_user_logged_in() )
		? 'no-cache, must-revalidate, max-age=0, no-store, private'
		: 'no-cache, must-revalidate, max-age=0';

	$headers = array(
		'Expires'       => 'Wed, 11 Jan 1984 05:00:00 GMT',
		'Cache-Control' => $cache_control,
	);

	if ( function_exists( 'apply_filters' ) ) {
		/**
		 * Filters the cache-controlling HTTP headers that are used to prevent caching.
		 *
		 * @since 2.8.0
		 *
		 * @see wp_get_nocache_headers()
		 *
		 * @param array $headers Header names and field values.
		 */
		$headers = (array) apply_filters( 'nocache_headers', $headers );
	}
	$headers['Last-Modified'] = false;
	return $headers;
}