yst_ga_default-ga-values
Set the default GA settings here.
Description
(array) apply_filters( 'yst_ga_default-ga-values', (unknown) $options, (unknown) $this_option_prefix );
Returns (array)
Parameters (2)
- 0. $options (unknown)
- The options.
- 1. $this_option_prefix (unknown)
- The this option prefix.
Usage
- To run the hook, copy the example below.
- $options = apply_filters( 'yst_ga_default-ga-values', $options, $this_option_prefix );
- if ( !empty( $options ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the yst_ga_default-ga-values callback
- function filter_yst_ga_default_ga_values( $options, $this_option_prefix ) {
- // make filter magic happen here...
- return $options;
- };
- // add the filter
- add_filter( 'yst_ga_default-ga-values', 'filter_yst_ga_default_ga_values', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'yst_ga_default-ga-values', 'filter_yst_ga_default_ga_values', 10, 2 );
Defined (1)
The filter is defined in the following location(s).
- /includes/class-options.php
- $options = apply_filters( 'yst_ga_default-ga-values', $options, $this->option_prefix );