kisabelle
10/3/2014 - 9:14 PM

TinyMCE Customization - Add or Disable Formatting Options

TinyMCE Customization - Add or Disable Formatting Options


// ==========================================
// * TinyMCE Disable Formatting Options
// ==========================================

/*
 * Modifying TinyMCE editor to remove unused items.
 */
function customformatTinyMCE($init) {
  // Add block format elements you want to show in dropdown
  $init['block_formats'] = 'Paragraph=p;Address=address;Heading=h3;Subheading=h4';
  $init['theme_advanced_disable'] = 'strikethrough,underline,forecolor,justifyfull';

  return $init;
}

// Modify Tiny_MCE init
add_filter('tiny_mce_before_init', 'customformatTinyMCE' );