Skip to content

Instantly share code, notes, and snippets.

@doitonlinemedia
Created February 19, 2019 10:00
Show Gist options
  • Save doitonlinemedia/4b30dea51f9642b26cf9ebe9397696a4 to your computer and use it in GitHub Desktop.
Save doitonlinemedia/4b30dea51f9642b26cf9ebe9397696a4 to your computer and use it in GitHub Desktop.
Remove editor from front-page.php
/**
* Remove editor from front-page
*/
function dom_remove_support_front_end(){
if((int) get_option('page_on_front')==get_the_ID()) {
remove_post_type_support('page', 'editor');
}
}
add_action('admin_head', 'dom_remove_support_front_end',100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment