bb_query
The BuddyPress bb query hook.
Description
Parameters (1)
- 0. $array (array) =>
array(&$this)
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bb_query', $array );
- The following example is for adding a hook callback.
- // define the bb_query callback
- function action_bb_query( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bb_query', 'action_bb_query', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bb_query', 'action_bb_query', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /bp-forums/bbpress/bb-includes/class.bb-query.php
- do_action_ref_array( 'bb_query', array(&$this) );