毕竟,我使用:
我正在尝试在我的论坛中构建自定义的tinyMCE菜单栏。 我禁用了文本编辑器并获得了不错的结局,但我不知道为什么,我只是无法显示“媒体”和“表情符号”按钮。
这是我的代码:
function bbp_enable_visual_editor( $buttons = array() ) {
$buttons['quicktags'] = false;
$buttons['tinymce'] = array(
'toolbar1' =>'bold, italic, underline, strikethrough, blockquote, bullist, numlist, link, unlink, cleanup, media, image, emoticons');
return $buttons;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
如下图所示,除媒体/表情符号按钮外,几乎所有功能均正常运行……在检查了许多主题之后,我并没有真正找到那个问题的人,他们的所有代码都正常工作,我觉得有点奇怪。有什么想法吗?
干杯
尚比。