Skip to content

Instantly share code, notes, and snippets.

@gistfrojd
Created June 2, 2014 14:22
Show Gist options
  • Save gistfrojd/4e193f17177b712407d3 to your computer and use it in GitHub Desktop.
Save gistfrojd/4e193f17177b712407d3 to your computer and use it in GitHub Desktop.
Wordpress - custom wysiwyg buttons
<?php
add_filter('tiny_mce_before_init', 'customize_wysiwyg_buttons');
public function customize_wysiwyg_buttons($init) {
$init['toolbar1'] = 'formatselect,styleselect,|,bold,italic,underline,|,bullist,numlist,|,link,unlink,|,removeformat';
$init['toolbar2'] = '';
$init['block_formats'] = 'Paragraph =p;Header 2 =h2;Header 3 =h3';
return $init;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment