Force hide custom field metaboxes

How can I completely remove the custom fields and the collapse button in the Edit Post/Edit Page custom screen, but without removing the capability to add custom fields with a PHP function?

Related posts

Leave a Reply

2 comments

  1. This is how to do it for all post types:

    add_action( 'do_meta_boxes', 'remove_default_custom_fields_meta_box', 1, 3 );
    function remove_default_custom_fields_meta_box( $post_type, $context, $post ) {
        remove_meta_box( 'postcustom', $post_type, $context );
    }