<unique_prefix>_after_network_settings_tab_general
The Breadcrumb NavXT unique prefix after network settings tab general hook.
Description
Parameters (1)
- 0. $this_opt (unknown)
- The this opt.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( '{$unique_prefix}_after_network_settings_tab_general', $this_opt );
- The following example is for adding a hook callback.
- // define the <unique_prefix>_after_network_settings_tab_general callback
- function action_unique_prefix_after_network_settings_tab_general( $this_opt ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "{$unique_prefix}_after_network_settings_tab_general", 'action_unique_prefix_after_network_settings_tab_general', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "{$unique_prefix}_after_network_settings_tab_general", 'action_unique_prefix_after_network_settings_tab_general', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /class.bcn_network_admin.php
- <?php do_action($this->unique_prefix . '_after_network_settings_tab_general', $this->opt); ?>