Home/Hooks/attachment_fields_to_edit
FILTER

attachment_fields_to_edit

Filters the attachment fields to edit.

wp-admin/includes/media.php
Line 1509
2 Parameters
View Source

Usage

add_filter( 'attachment_fields_to_edit', 'your_callback_function', 10, 2 );

Filter Callback:

function your_callback_function( $form_fields, $post ) {
    // Your code here
    return $form_fields;
}

Parameters

$form_fields

Parameter 1

$post

Parameter 2

🔄 Filter Hook

Filter hooks allow you to modify data before it is saved to the database or displayed on the screen. Filters must return a value.