Skip to content

Instantly share code, notes, and snippets.

@schliflo
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schliflo/6eefebd896e0e78c372d to your computer and use it in GitHub Desktop.
Save schliflo/6eefebd896e0e78c372d to your computer and use it in GitHub Desktop.
WP add real fullscreen button to editor
// 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