Viewing 1 replies (of 1 total)
  • This function works in my theme but I had to re-save the posts to make it apply.

    function tinymce_remove_root_block_tag( $init ) {
        $init['forced_root_block'] = false;
        return $init;
    }
    add_filter( 'tiny_mce_before_init', 'tinymce_remove_root_block_tag' );
Viewing 1 replies (of 1 total)
  • The topic ‘How can I get rid of html formatting?’ is closed to new replies.