---
title: Filtrar la fecha de inicio de Google Search Console
url: "https://www.seopress.org/es/soporte/hooks/filtrar-la-fecha-de-inicio-de-google-search-console/"
lang: es
updated: 2023-04-20
hook_name: seopress_search_console_start_date
required_version: 6.6
---

# Filtrar la fecha de inicio de Google Search Console

- **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)



