提示:如果官网是英文页面,建议使用谷歌浏览器能同步翻译页面。点击下载【谷歌浏览器最新绿色便携版】
注意:部分文章发布时间较长,可能存在未知因素,购买时建议在本站搜索商家名称,先充分了解商家动态。
交流:唯一投稿邮箱:hostvps@88.com。
注意:部分文章发布时间较长,可能存在未知因素,购买时建议在本站搜索商家名称,先充分了解商家动态。
交流:唯一投稿邮箱:hostvps@88.com。
适合经常折腾 WordPress 主题的博友。
那么,如何让文件版本号自动更新呢?
方法一:最好的办法是用钩子,比如可以这样加载 style.css、script.js 文件和通过文件最后修改时间控制它们的版本:
function theme_scripts() { wp_enqueue_style( 'style', get_stylesheet_uri(), array() , filemtime(get_stylesheet_directory().'/style.css')); wp_enqueue_script( 'script', get_template_directory_uri().'/js/script.js', array(), filemtime(get_stylesheet_directory().'/js/script.js') , true ); } add_action( 'wp_enqueue_scripts', 'theme_scripts' );
我现在用的是上面这个代码。
方法二:用当前时间作为版本号
比如,我们可以这样控制主题 style.css 的文件版本。
<link rel="stylesheet" href="//yourdomain.com/wp-content/themes/themename/style.css?v=<?php%20echo%20time();%20?>">
但这个方法显然会相当耗费服务器资源。因为每刷新一次页面,就要获取当前时间(unix 格式)下的 css文件版本。
方法三:用文件(最后修改)时间作为版本号
用 filemtime 取得文件修改时间
<link rel="stylesheet" href="//yourdomain.com/wp-content/themes/themename/style.css?ver=<?php%20echo%20filemtime(http://yourdomain.com/wp-content/themes/themename/style.css);%20?>" />
转自:https://cyhour.com/357/