我正在关注本教程,了解如何在 WordPress 中向 TinyMCE 编辑器添加自定义按钮。试图编辑作者的 JS 以包含我的功能,但它似乎已被缓存。文章作者有一个 hack(下面的代码片段),它确实是第一次工作(按钮现在在工具栏中),尽管它不适用于后续刷新。
// "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 安装,未激活任何插件。