cache_javascript_headers

函数
cache_javascript_headers ( No parameters )

cache_javascript_headers: 这个函数是用来在客户端缓存JavaScript头信息的。它不接受任何参数,也不返回任何东西。

用JavaScript内容类型设置缓存10天的头文件。

function cache_javascript_headers() {
	$expiresOffset = 10 * DAY_IN_SECONDS;

	header( 'Content-Type: text/javascript; charset=' . get_bloginfo( 'charset' ) );
	header( 'Vary: Accept-Encoding' ); // Handle proxies.
	header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expiresOffset ) . ' GMT' );
}

常见问题

FAQs
查看更多 >