mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
8 lines
272 B
Text
8 lines
272 B
Text
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;
|
|
}
|