bp_groups_filter_title
The BuddyPress bp groups filter title hook.
Description
do_action( 'bp_groups_filter_title' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_groups_filter_title' );
- The following example is for adding a hook callback.
- // define the bp_groups_filter_title callback
- function action_bp_groups_filter_title( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bp_groups_filter_title', 'action_bp_groups_filter_title', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bp_groups_filter_title', 'action_bp_groups_filter_title', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /bp-groups/bp-groups-template.php
- do_action( 'bp_groups_filter_title' );