我正在关注如何在WordPress中向TinyMCE编辑器添加自定义按钮this tutorial。试图编辑作者的JS以包含我的功能,但似乎已经缓存了。文章作者有一个黑客(下面的代码片段),它确实第一次工作(按钮现在在工具栏中),虽然它不适用于后续刷新。
// "This will intercept the version check and increment the current version number by 3.
// It's the quick and dirty way to do it without messing with the settings directly..."
function my_refresh_mce($ver) {
$ver += 3;
return $ver;
}
add_filter( 'tiny_mce_version', 'my_refresh_mce');
我可以做什么来禁用此缓存?
最新的WordPress localhost安装,没有激活插件。
答案 0 :(得分:2)
原来“没有插件激活”是不够的。一旦我完成全新安装(没有 W3 Total Cache插件),问题就消失了。