仔细看,似乎您无法仅在某些细节上更改图像编辑器。唯一可以做的就是用稍微修改过的副本替换图像编辑器。我将很快解释如何做到这一点。
But before that a word of warning. The Image Editor is currently (2/2014) worked on, so this solution probably won\'t work from the next WordPress version on without further modification.
最后一点:如果你把它放在插件中而不是主题中,那会更好。总之,为了缩短这个答案,我解释了如何把这个放在你的主题中。
1。删除默认图像编辑器
add_filter( \'tiny_mce_plugins\', \'remove_wpeditimage\', 10, 2 );
function remove_wpeditimage($plugins){
if(($key = array_search(\'wpeditimage\', $plugins)) !== false) {
unset($plugins[$key]);
}
if(($key = array_search(\'teeny_mce_plugins\', $plugins)) !== false) {
unset($plugins[$key]);
}
return $plugins;
}
2。将图像编辑器复制并更改到主题文件夹中。
按你喜欢的方式改变它。摆脱路线选项的最简单方法是将第55行从
<tr class="align">
至
<tr class="align" style="display:none;">
3。添加更改的图像编辑器
add_filter(\'mce_external_plugins\', \'add_customized_wpeditimage\');
function add_customized_wpeditimage($plugins) {
$plugins[ \'wpeditimage\' ] = get_template_directory_uri() . \'/wpeditimage/editor_plugin.js\';
return $plugins;
}