Is it possible to remove a default attachment field from the attachment editor, for example the “Caption” field ?

To give you some context, I’m trying to build a custom attachment editor page. I found how to add custom fields, now I’d like to remove some of the default ones I don’t need.

1 Answer
1

Use the attachment_fields_to_edit filter to remove the fields you don’t want displaying from the array.

function remove_caption($fields) {
  unset($fields['post_excerpt']); // See wp-admin\includes\media.php line 1071
  return $fields;
}
add_filter('attachment_fields_to_edit','remove_caption');

Leave a Reply

Your email address will not be published. Required fields are marked *