Title: image_attachment_fields_to_edit
Published: April 25, 2014
Last modified: May 20, 2026

---

# image_attachment_fields_to_edit( array $form_fields, object $post ): array<string,

## In this article

 * [Parameters](https://developer.wordpress.org/reference/functions/image_attachment_fields_to_edit/?output_format=md#parameters)
 * [Return](https://developer.wordpress.org/reference/functions/image_attachment_fields_to_edit/?output_format=md#return)
 * [Source](https://developer.wordpress.org/reference/functions/image_attachment_fields_to_edit/?output_format=md#source)
 * [Changelog](https://developer.wordpress.org/reference/functions/image_attachment_fields_to_edit/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/functions/image_attachment_fields_to_edit/?output_format=md#wp--skip-link--target)

Retrieves the image attachment fields to edit form fields.

## 󠀁[Parameters](https://developer.wordpress.org/reference/functions/image_attachment_fields_to_edit/?output_format=md#parameters)󠁿

 `$form_fields`arrayrequired

`$post`objectrequired

## 󠀁[Return](https://developer.wordpress.org/reference/functions/image_attachment_fields_to_edit/?output_format=md#return)󠁿

 array<string, array<string, mixed>> The attachment form fields.

## 󠀁[Source](https://developer.wordpress.org/reference/functions/image_attachment_fields_to_edit/?output_format=md#source)󠁿

    ```php
    function image_attachment_fields_to_edit( $form_fields, $post ) {
    	return $form_fields;
    }
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-admin/includes/media.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-admin/includes/media.php#L1335)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-admin/includes/media.php#L1335-L1337)

## 󠀁[Changelog](https://developer.wordpress.org/reference/functions/image_attachment_fields_to_edit/?output_format=md#changelog)󠁿

| Version | Description | 
| [2.5.0](https://developer.wordpress.org/reference/since/2.5.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Ffunctions%2Fimage_attachment_fields_to_edit%2F)
before being able to contribute a note or feedback.