ngg_delete_picture
The NextCellent Gallery ngg delete picture hook.
Description
Parameters (1)
- 0. $image_pid (unknown)
- The image pid.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'ngg_delete_picture', $image_pid );
- The following example is for adding a hook callback.
- // define the ngg_delete_picture callback
- function action_ngg_delete_picture( $image_pid ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'ngg_delete_picture', 'action_ngg_delete_picture', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'ngg_delete_picture', 'action_ngg_delete_picture', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /admin/manage/class-ngg-manager.php
- do_action( 'ngg_delete_picture', $image->pid );
- /admin/manage/class-ngg-image-manager.php
- do_action('ngg_delete_picture', $pid);