您可以在每次更新文件时更改文件版本。要执行此操作,请转到functions.php
文件并查找样式表的排队(或注册)位置-它将类似于:
wp_enqueue_style( \'theme-style\', get_template_directory_uri() . \'/style.css\' );
并将其更改为:
wp_enqueue_style( \'theme-style\', get_template_directory_uri() . \'/style.css\', array(), filemtime( get_template_directory_uri() . \'/style.css\' ) );
这将在每次保存时更改文件版本,强制加载新版本
正如您非常正确地指出的,必须正确地添加样式
functions.php
, 未硬编码
header.php
或其他地方。