yst-ga-filter-api-end-date
The Google Analytics by Yoast yst ga filter api end date hook.
Description
apply_filters( 'yst-ga-filter-api-end-date', $date );
Parameters (1)
- 0. $date
- The date.
Usage
- To run the hook, copy the example below.
- $date = apply_filters( 'yst-ga-filter-api-end-date', $date );
- if ( !empty( $date ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the yst-ga-filter-api-end-date callback
- function filter_yst_ga_filter_api_end_date( $date ) {
- // make filter magic happen here...
- return $date;
- };
- // add the filter
- add_filter( 'yst-ga-filter-api-end-date', 'filter_yst_ga_filter_api_end_date', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'yst-ga-filter-api-end-date', 'filter_yst_ga_filter_api_end_date', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /admin/dashboards/class-admin-dashboards-collector.php
- 'end' => apply_filters( 'yst-ga-filter-api-end-date', date( 'Y-m-d', strtotime( 'yesterday' ) ) ),