add_attachment
Fires once an attachment has been added.
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'send_attachment_info' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'add_attachment', $array );
- The following example is for adding a hook callback.
- // define the add_attachment callback
- function action_add_attachment( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'add_attachment', 'action_add_attachment', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'add_attachment', 'action_add_attachment', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /sync/class.jetpack-sync-module-attachments.php
- add_action( 'add_attachment', array( $this, 'send_attachment_info' ) );