attachment_fields_to_edit

attachment_fields_to_edit

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter
See hook in action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('attachment_fields_to_edit') is found 2 times:

  • /wp-admin/includes/media.php line 1509
    1505
    1506
    1507
    1508
    1509
    1510
    1511
    1512
    1513
    1514
    1515
         *
         * @param array   $form_fields An array of attachment form fields.
         * @param WP_Post $post        The WP_Post attachment object.
         */
        $form_fields = apply_filters( 'attachment_fields_to_edit', $form_fields, $post );
     
        return $form_fields;
    }
     
    /**
     * Retrieves HTML for media items of post gallery.
  • /wp-admin/includes/media.php line 1935
    1931
    1932
    1933
    1934
    1935
    1936
    1937
    1938
    1939
    1940
    1941
    */
    $form_fields = array_merge_recursive( $form_fields, (array) $args['errors'] );
     
    /** This filter is documented in wp-admin/includes/media.php */
    $form_fields = apply_filters( 'attachment_fields_to_edit', $form_fields, $post );
     
    unset(
        $form_fields['image-size'],
        $form_fields['align'],
        $form_fields['image_alt'],
        $form_fields['post_title'],

See this hook used in plugins: