在WordPress网站中安装的bbpress默认可视化编辑器是被关闭的,要打开需要在主题functions.php里边加入如下一段代码:
function bbp_enable_visual_editor( $args = array() ) { $args['tinymce'] = true; return $args; } add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
在WordPress网站中安装的bbpress默认可视化编辑器是被关闭的,要打开需要在主题functions.php里边加入如下一段代码:
function bbp_enable_visual_editor( $args = array() ) { $args['tinymce'] = true; return $args; } add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );