Filter hook 'attachment_fields_to_edit'

in WP Core File wp-admin/includes/media.php at line 1509

Description

Filters the attachment fields to edit.

Occurrences

Filename Line Number
wp-admin/includes/media.php 1509
wp-admin/includes/media.php 1935

Parameters

Type Name Description
array $form_fields An array of attachment form fields.
WP_Post $post The WP_Post attachment object.

Usage Examples

Example 1

add_filter( 'attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit'

Example 2

add_filter( 'attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit'

Example 3

add_filter( 'attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit'

PHP Doc

/**
	 * Filters the attachment fields to edit.
	 *
	 * @since 2.5.0
	 *
	 * @param array   $form_fields An array of attachment form fields.
	 * @param WP_Post $post        The WP_Post attachment object.
	 */