Enable bbPress tinymce with Enlighter button function

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #156176
    Locohacker
    Administrator

    Enable bbPress tinymce with Enlighter button function

    add_filter('bbp_after_get_the_content_parse_args', function($args = array()){
        $args['tinymce'] = true;
        $args['teeny'] = false;
        $args['quicktags'] = false;
        
        return $args;
    });
Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.