Home/Hooks/attachment_submitbox_misc_actions
ACTION

attachment_submitbox_misc_actions

Fires after the 'Uploaded on' section of the Save meta box in the attachment editing screen.

wp-admin/includes/meta-boxes.php
Line 460
1 Parameter
View Source

Usage

add_action( 'attachment_submitbox_misc_actions', 'your_callback_function', 10, 1 );

Action Callback:

function your_callback_function( $post ) {
    // Your code here
    
}

Parameters

$post

Parameter 1

⚡ Action Hook

Action hooks allow you to insert custom code at specific points during WordPress execution. Actions do not return any values.