您确定版本包含在style.css
以正确的方式?在这种情况下,这应该真的有效(与wp_enqueue_scripts
):
$theme_data = wp_get_theme();
wp_register_style(\'your-style-handle\', get_template_directory_uri() . \'/style.css\', \'\', $theme_data[\'version\'], \'all\');
wp_enqueue_style(\'your-style-handle\');
开发时,您可能不想在中更改文件版本
style.css
在这种情况下,你可以
filemtime( get_template_directory_uri() . \'/style.css\' )
代替
$theme_data[\'version\']
在上述代码中。在代码方面,这是正确的做法。否则,请注意浏览器缓存问题。