Last active
August 29, 2015 14:26
WP add real fullscreen button to editor
This file contains 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
// add this to your theme's functions.php | |
function my_mce_buttons($buttons) { | |
array_push($buttons, 'fullscreen'); | |
return $buttons; | |
} | |
add_filter('mce_buttons', 'my_mce_buttons'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment