Filter Google Search Console date range in SEOPress on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_filter('seopress_search_console_date_range', 'sp_search_console_date_range');
function sp_search_console_date_range($dateRange) {
//default values
//- 7 days,- 28 days,- 3 months,- 6 months,- 12 months,- 16 months';
$dateRange = '- 28 days';
return $dateRange;
}