Created
August 23, 2012 16:26
-
-
Save waviaei/3438293 to your computer and use it in GitHub Desktop.
WordPress / Tiny MCE / customize format choices
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
| //Not to show h1 on Tiny MCE | |
| function custom_editor_settings( $initArray ){ | |
| $initArray['theme_advanced_blockformats'] = 'p,address,pre,code,h2,h3,h4,h5,h6'; | |
| return $initArray; | |
| } | |
| add_filter( 'tiny_mce_before_init', 'custom_editor_settings' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment