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

Comments

Popular posts from this blog

How to Move WordPress to a New Host or Server With No Downtime

22.07