Problem
我正在尝试定制TinyMCE文本编辑器。推翻微型MCE的几种常见选择似乎对我不起作用。因此,我在函数文件中重写了函数:
function tinymce_editor_buttons($buttons) {
return array(
"justifyleft",
"justifycenter",
"justifyright",
"bold",
"italic",
"underline",
"bullist",
"numlist",
"link",
"hr",
"undo",
"redo",
"separator",
"pastetext",
"removeformat",
"formatselect",
"styleselect",
);
}
add_filter("mce_buttons", "tinymce_editor_buttons", 99);
function tinymce_editor_buttons_second_row($buttons) {
//return an empty array to remove this line
return array();
}
add_filter("mce_buttons_2", "tinymce_editor_buttons_second_row", 99);
这非常有效,除了justify函数和分隔符,它们没有出现。
这post 列出了所有的短代码,因此我认为我有正确的代码,删除和添加其他选项也有效,但这两个选项都无效。
为什么其他选项都会出现,而这些选项却不会出现?