Support

Account

Home Forums General Issues Wysiwyg, formatselect Reply To: Wysiwyg, formatselect

  • For anyone struggling with this, post WP 3.9 you’ll have to do this:

    add_filter( 'tiny_mce_before_init', function( $settings ){
    
    	$settings['block_formats'] = 'Paragraph=p;Heading=h2;Subheading=h3';
    
    	return $settings;
    
    } );