bb_get_inception
The BuddyPress bb get inception hook.
Description
Parameters (1)
- 0. $bb_time_function_return (unknown) =>
_bb_time_function_return( $bb_inception, $args )
- The bb time function return.
Usage
- To run the hook, copy the example below.
- $bb_time_function_return = apply_filters( 'bb_get_inception', $bb_time_function_return );
- if ( !empty( $bb_time_function_return ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bb_get_inception callback
- function filter_bb_get_inception( $bb_time_function_return ) {
- // make filter magic happen here...
- return $bb_time_function_return;
- };
- // add the filter
- add_filter( 'bb_get_inception', 'filter_bb_get_inception', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bb_get_inception', 'filter_bb_get_inception', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-forums/bbpress/bb-includes/functions.bb-statistics.php
- return apply_filters( 'bb_get_inception', _bb_time_function_return( $bb_inception, $args ) );