Guest User

Untitled

a guest
Jan 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function remove_h1_from_heading($args) {
  2. // Just omit h1 from the list
  3. $args['block_formats'] = 'Paragraph=p;Heading 2=h2;Heading 3=h3;Heading 4=h4;Heading 5=h5;Heading 6=h6;Pre=pre';
  4. return $args;
  5. }
  6. add_filter('tiny_mce_before_init', 'remove_h1_from_heading' );
Add Comment
Please, Sign In to add comment