How to enable-visual-editor in BBPress

Published on : April 27, 2026

Author:

Category: Wordpress


How to enable-visual-editor in BBPress

In bbPress 2.3.1, WordPress’s visual editor was defaulted to off. To turn it back on, try this code snippet in a plugin or your theme’s functions.php file:

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’ );

 

 

Source: https://codex.bbpress.org/enable-visual-editor/

 


Leave a Reply

Your email address will not be published. Required fields are marked *