Remove permanently, custom field options on admin panel


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function remove_post_custom_fields() {
  2. remove_meta_box( 'postcustom' , 'post' , 'normal' );
  3. }
  4. add_action( 'admin_menu' , 'remove_post_custom_fields' );

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.