yst-ga-filter-api-limit
Filter: 'yst-ga-filter-api-limit' - Allow people to change the max results value in the API calls.
Description
Default value is 1000
results per call.
Parameters (1)
- 0. $int (int) =>
1000
- The int.
Usage
- To run the hook, copy the example below.
- $int = apply_filters( 'yst-ga-filter-api-limit', $int );
- if ( !empty( $int ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the yst-ga-filter-api-limit callback
- function filter_yst_ga_filter_api_limit( $int ) {
- // make filter magic happen here...
- return $int;
- };
- // add the filter
- add_filter( 'yst-ga-filter-api-limit', 'filter_yst_ga_filter_api_limit', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'yst-ga-filter-api-limit', 'filter_yst_ga_filter_api_limit', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /admin/dashboards/class-admin-dashboards-collector.php
- $api_call_limit = apply_filters( 'yst-ga-filter-api-limit', 1000 );