bb_check_ajax_referer
The BuddyPress bb check ajax referer hook.
Description
Parameters (2)
- 0. $action (unknown)
- The action.
- 1. $result (unknown)
- The result.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bb_check_ajax_referer', $action, $result );
- The following example is for adding a hook callback.
- // define the bb_check_ajax_referer callback
- function action_bb_check_ajax_referer( $action, $result ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bb_check_ajax_referer', 'action_bb_check_ajax_referer', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bb_check_ajax_referer', 'action_bb_check_ajax_referer', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /bp-forums/bbpress/bb-includes/functions.bb-pluggable.php
- do_action('bb_check_ajax_referer', $action, $result);