add_attachment WordPress Action Hook
The add_attachment hook is fired when an attachment is added to a post. This hook can be used to save custom data about attachments or perform other actions when an attachment is added.
do_action( 'add_attachment', int $post_ID ) #
Fires once an attachment has been added.
Parameters
- $post_ID
(int)Attachment ID.
More Information
This hook is called when an attachment created by wp_insert_attachment() in wp-includes/post.php.
Source
File: wp-includes/post.php
Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |