Created
January 19, 2017 15:02
-
-
Save moxdev/293acf90b7215df032d54265789f9b16 to your computer and use it in GitHub Desktop.
Add font sizes to WordPress wysiwyg
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
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