How do I remove attachment fields, like description and alt in media library of Wordpress attachments?
description
alt
The following code use to work on old Wo
Try this:
add_action('admin_head', 'remove_attachment_field'); function remove_attachment_field() { echo ""; }