Skip to content

Instantly share code, notes, and snippets.

@moxdev
Created January 19, 2017 15:02
Show Gist options
  • Save moxdev/293acf90b7215df032d54265789f9b16 to your computer and use it in GitHub Desktop.
Save moxdev/293acf90b7215df032d54265789f9b16 to your computer and use it in GitHub Desktop.
Add font sizes to WordPress wysiwyg
function wp_editor_fontsize_filter( $buttons ) {
array_shift( $buttons );
array_unshift( $buttons, 'fontsizeselect');
array_unshift( $buttons, 'formatselect');
return $buttons;
}
add_filter('mce_buttons_2', 'wp_editor_fontsize_filter');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment