• I’m wondering whether the WP3.5 media manager is customizable or not. I’d like to remove the Caption and Alternative Text textfields and widen a bit the part of the manager containing these fields (reducing the thumbnails part). Is it possible? If yes, how can it be done?

    Any help would be appreciated

    Thanks in advance

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter leemon

    (@leemon)

    I tried the following to remove the fields with no success:

    add_filter('attachment_fields_to_edit', 'remove_media_upload_fields', 10000, 2);
    function remove_media_upload_fields( $form_fields, $post ) {
        unset( $form_fields['image_alt'] );
        unset( $form_fields['post_excerpt'] );
    
        return $form_fields;
    }

    I am also interested in this. What is the recommended method of customizing the media manager in 3.5?

    This ticket on trac is related.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Customize WordPress 3.5 media manager’ is closed to new replies.