<unique_prefix>_after_settings_tab_taxonomy
The Breadcrumb NavXT unique prefix after settings tab taxonomy 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_settings_tab_taxonomy', $this_opt );
- The following example is for adding a hook callback.
- // define the <unique_prefix>_after_settings_tab_taxonomy callback
- function action_unique_prefix_after_settings_tab_taxonomy( $this_opt ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "{$unique_prefix}_after_settings_tab_taxonomy", 'action_unique_prefix_after_settings_tab_taxonomy', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "{$unique_prefix}_after_settings_tab_taxonomy", 'action_unique_prefix_after_settings_tab_taxonomy', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /class.bcn_admin.php
- do_action($this->unique_prefix . '_after_settings_tab_taxonomy', $this->opt); ?>