yst_ga_advanced-tab
Action: 'yst_ga_advanced-tab' - Allow adding to the advanced tab of the settings.
Description
do_action( 'yst_ga_advanced-tab' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'yst_ga_advanced-tab' );
- The following example is for adding a hook callback.
- // define the yst_ga_advanced-tab callback
- function action_yst_ga_advanced_tab( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'yst_ga_advanced-tab', 'action_yst_ga_advanced_tab', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'yst_ga_advanced-tab', 'action_yst_ga_advanced_tab', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /admin/pages/settings.php
- do_action( 'yst_ga_advanced-tab' );