Created
February 22, 2019 10:09
-
-
Save HendrikHaase/f65f6d4c06ae3cc707dfb370e8ef0328 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** 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