我需要在Thesis Framework中强制刷新custom.css

时间:2013-01-04 07:17:49

标签: css wordpress caching wordpress-thesis-theme

有谁知道在论文中刷新custom.css的最佳方法?我遇到了一个问题,由于custom.css的浏览器缓存,我的某些css没有得到实现。我尝试在文件名中添加一个变量,如“custom.css?v = 1”,虽然这有效,但每次加载页面时都会出错。任何帮助,将不胜感激。提前谢谢。

1 个答案:

答案 0 :(得分:0)

您可以通过将此过滤器添加到custom_functions.php文件来禁用CSS缓存。

function cache_customcss()
{
return true;
}

add_filter('thesis_cache_query','cache_customcss');