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?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

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.

link|improve this answer
feedback

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.

<?php
add_action('wp_head','hide_custom_fields_postbox');

function hide_custom_fields_postbox()
{
  if ( is_admin() ) {
  ?>
  <style type="text/css">
  div#postcustom {display:none;}
  </style>
  <?php
  }
}//end function
?>
link|improve this answer
feedback
function remove_metaboxes() {
 remove_meta_box( 'postcustom' , 'page' , 'normal' ); //removes custom fields for page
 remove_meta_box( 'commentstatusdiv' , 'page' , 'normal' ); //removes comments status for page
 remove_meta_box( 'commentsdiv' , 'page' , 'normal' ); //removes comments for page
 remove_meta_box( 'authordiv' , 'page' , 'normal' ); //removes author for page
}
add_action( 'admin_menu' , 'remove_metaboxes' );

change "page" to "post" to do this for posts

Put this in your function.php file

link|improve this answer
1  
This should be the correct answer – Jami Mar 10 at 10:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.