在Tinymce自定义按钮开发期间防止缓存

时间:2012-10-30 作者:montrealist

我在跟踪this turial 介绍如何在WordPress中向TinyMCE编辑器添加自定义按钮。试图编辑作者的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\');
我能做些什么disable the caching?

最新全新WordPress localhost安装,未激活插件。

1 个回复
最合适的回答,由SO网友:montrealist 整理而成

结果表明,“没有激活插件”是不够的。有一次我做了一个全新的安装(without W3 Total Cache插件),问题消失。

结束