BBPRess Visual Editor
Add this to theme functions.php file:
//Enable Visual Editor for BBPress below
function bbp_enable_visual_editor( $args = array() ) {
$args['tinymce'] = true;
$args['quicktags'] = false;
$args['teeny'] = false;
return $args;
}
add_filter( 'bbp_after_get_the_content_ parse_args', 'bbp_enable_visual_editor' );
//Enable Visual Editor for BBPress above
//Enable Visual Editor for BBPress below
function bbp_enable_visual_editor( $args = array() ) {
$args['tinymce'] = true;
$args['quicktags'] = false;
$args['teeny'] = false;
return $args;
}
add_filter( 'bbp_after_get_the_content_
//Enable Visual Editor for BBPress above
Comments
Post a Comment