Skip to content

Instantly share code, notes, and snippets.

@HendrikHaase
Created February 22, 2019 10:09
Show Gist options
  • Select an option

  • Save HendrikHaase/f65f6d4c06ae3cc707dfb370e8ef0328 to your computer and use it in GitHub Desktop.

Select an option

Save HendrikHaase/f65f6d4c06ae3cc707dfb370e8ef0328 to your computer and use it in GitHub Desktop.
/** adjust tinymce - tags */
add_filter('tiny_mce_before_init', 'tiny_mce_remove_unused_formats' );
function tiny_mce_remove_unused_formats($init) {
// Add block format elements you want to show in dropdown
$init['block_formats'] = 'Paragraph=p;Heading 2=h2;Heading 3=h3;Pre=pre';
return $init;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment