I am trying to remove custom fields section from WordPress backend. I think I found a function that display custom fields. The function is located in wp-admin/edit-page-form.php line 181.
do_meta_boxes('page','normal',$post)
when I remove the function, WordPress does not display other boxes as well.
How do I remove a particular box from WordPress backend?
change “page” to “post” to do this for posts
Put this in your function.php file
This is how to do it for all post types:
You’re changing core files, which is not good idea when it comes to upgrades and the end-user. Go to “Screen Options” and untick “Custom Fields,” or use a plugin http://wordpress.org/extend/plugins/custom-write-panel/ to hide editor panels. Or, check the plugin for the code you need to disable each editor option without using the plugin.
You can most easily do this by editing the CSS for the individual box within the admin. First method that comes to mind would be to add the following to your theme’s functions.php file.