Skip to content

Instantly share code, notes, and snippets.

@andrasguseo
Last active March 8, 2017 23:05
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 andrasguseo/c49e5c31feb6c8738a2fd02273eb3bb2 to your computer and use it in GitHub Desktop.
Save andrasguseo/c49e5c31feb6c8738a2fd02273eb3bb2 to your computer and use it in GitHub Desktop.
Hide the TinyMCE editor
<?php
/* LOAD CUSTOM STYLES AT THE END OF THE PAGE */
function hide_tinymce() {
?>
<style type="text/css">
#postdivrich {
display: none;
}
</style>
<?php
}
add_action( 'admin_head', 'hide_tinymce' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment