我知道这个问题已经有了一个公认的答案,效果很好,但我想提到另一个更简单的解决方案。
排队时,使用PHP函数time()
获取当前时间并将其用作版本。您的排队将如下所示:
wp_enqueue_style( \'my-custom-style\', get_template_directory_uri() . \'/style.css\', array(), time() );
如果您正在用html加载样式表,您的代码将如下所示:
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri ?>/style.css?ver=<?php echo time() ?>">