delete_attachment
Registers actions and filters.
Description
Parameters (1)
- 0. $su_delete_resized_images (string) =>
'su_delete_resized_images'
- The su delete resized images.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'delete_attachment', $su_delete_resized_images );
- The following example is for adding a hook callback.
- // define the delete_attachment callback
- function action_delete_attachment( $su_delete_resized_images ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'delete_attachment', 'action_delete_attachment', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'delete_attachment', 'action_delete_attachment', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /inc/core/tools.php
- add_action( 'delete_attachment', 'su_delete_resized_images' );