我在跟踪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安装,未激活插件。