WordPress开发函数cache_javascript_headers()
WordPress开发函数cache_javascript_headers(),使用JavaScript内容类…
WordPress开发函数cache_javascript_headers(),使用JavaScript内容类型设置10天的缓存头。
用法:
cache_javascript_headers()
来源
文件: wp-includes/functions.php
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’ );
}
更新日志:
类别:WordPress入门、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!