bp_group_options_nav
The rtMedia for WordPress, BuddyPress and bbPress 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).
- /templates/main.php
- <?php do_action( 'bp_group_options_nav' ); ?>
- /app/main/controllers/template/template.php
- <?php do_action( 'bp_group_options_nav' ); ?>