---
title: Filter Google Search Console start date
url: "https://www.seopress.org/support/hooks/filter-google-search-console-start-date/"
lang: en-US
updated: 2023-04-20
hook_name: seopress_search_console_start_date
required_version: 6.6
---

# Filter Google Search Console start date

- **Hook name:** `seopress_search_console_start_date`
- **Required version:** 6.6

```php
add_filter('seopress_search_console_start_date', 'sp_search_console_start_date');
function sp_search_console_start_date($startDate) {
	//var_dump($startDate) to know the correct format to return
	return $startDate;
}
```

Source: [https://gist.github.com/wp-seopress/b60a230f9353b938839cae8ff3f1af5b](https://gist.github.com/wp-seopress/b60a230f9353b938839cae8ff3f1af5b)



