Created
February 19, 2019 10:00
-
-
Save doitonlinemedia/4b30dea51f9642b26cf9ebe9397696a4 to your computer and use it in GitHub Desktop.
Remove editor from front-page.php
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
/** | |
* 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