yst_ga_show_license_form
The Google Analytics by Yoast yst ga show license form hook.
Description
do_action( 'yst_ga_show_license_form' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'yst_ga_show_license_form' );
- The following example is for adding a hook callback.
- // define the yst_ga_show_license_form callback
- function action_yst_ga_show_license_form( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'yst_ga_show_license_form', 'action_yst_ga_show_license_form', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'yst_ga_show_license_form', 'action_yst_ga_show_license_form', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /admin/pages/extensions.php
- do_action( 'yst_ga_show_license_form' );