wp_media_attach_action WordPress Action Hook
The wp_media_attach_action hook allows you to attach files to a post or page using the WordPress media uploader. This hook is triggered when you click the "Attach" button in the media uploader.
do_action( 'wp_media_attach_action', string $action , int $attachment_id , int $parent_id ) #
Fires when media is attached or detached from a post.
Parameters
- $action
(string)Attach/detach action. Accepts 'attach' or 'detach'.
- $attachment_id
(int)The attachment ID.
- $parent_id
(int)Attachment parent ID.
Source
Changelog
Version | Description |
---|---|
5.5.0 | Introduced. |