bp_network_tool_box
Fires inside the markup used to display the Available Tools page.
Description
do_action( 'bp_network_tool_box' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_network_tool_box' );
- The following example is for adding a hook callback.
- // define the bp_network_tool_box callback
- function action_bp_network_tool_box( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bp_network_tool_box', 'action_bp_network_tool_box', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bp_network_tool_box', 'action_bp_network_tool_box', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /bp-core/admin/bp-core-admin-tools.php
- do_action( 'bp_network_tool_box' ); ?>