subscribe2_wpmu_unsubscribe
The Subscribe2 subscribe2 wpmu unsubscribe hook.
Description
do_action( 'subscribe2_wpmu_unsubscribe', $array );
Parameters (1)
- 0. $array
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'subscribe2_wpmu_unsubscribe', $array );
- The following example is for adding a hook callback.
- // define the subscribe2_wpmu_unsubscribe callback
- function action_subscribe2_wpmu_unsubscribe( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'subscribe2_wpmu_unsubscribe', 'action_subscribe2_wpmu_unsubscribe', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'subscribe2_wpmu_unsubscribe', 'action_subscribe2_wpmu_unsubscribe', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /classes/class-s2-multisite.php
- do_action_ref_array('subscribe2_wpmu_unsubscribe', array($user_ID, $unsub_id));