bp_group_options_nav
The BuddyPress bp group options nav hook.
Description
do_action( 'bp_group_options_nav' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_group_options_nav' );
- The following example is for adding a hook callback.
- // define the bp_group_options_nav callback
- function action_bp_group_options_nav( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bp_group_options_nav', 'action_bp_group_options_nav', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bp_group_options_nav', 'action_bp_group_options_nav', 10, 0 );
Defined (2)
The action is defined in the following location(s).
- /bp-themes/bp-default/groups/single/home.php
- <?php do_action( 'bp_group_options_nav' ); ?>
- /bp-templates/bp-legacy/buddypress/groups/single/home.php
- do_action( 'bp_group_options_nav' ); ?>