在TinyMCE的最新版本中,只有代码可以在可视化编辑器中隐藏按钮(Remove Specific Buttons from WP Editor TinyMCE)。但是使用WordPress 3.9 TinyMCE 4.0还有其他API。
有人知道现在该怎么做吗?
答案 0 :(得分:0)
如果我正确理解了这个问题,你可以使用类似的东西从WP tinyMCE中删除默认按钮。
// Remove TinyMCE Default Button
function myplugin_tinymce_buttons( $buttons ) {
//Remove the text color selector
$remove = 'blockquote'; //default blockquote button
//Find the array key and then unset
if ( ( $key = array_search( $remove, $buttons ) ) !== false )
unset( $buttons[$key] );
return $buttons;
}
add_filter( 'mce_buttons', 'myplugin_tinymce_buttons' );
了解使用浏览器开发工具所需元素的名称。只需突出显示元素并查看课程。它也将是这个名字。例如: where to see the name of the element
答案 1 :(得分:-1)
function delete_button($buttons) {
unset($buttons[6]);
unset($buttons[7]);
unset($buttons[8]);
unset($buttons[9]);
unset($buttons[12]);
unset($buttons[14]);
return $buttons;
}
add_filter('mce_buttons', 'delete_button');
print_r($按钮)读取特定按钮编号。