---
title: Filtrer la requête des positions des mots clés pour les notifications par mail
url: "https://www.seopress.org/fr/support/hooks/filtrer-requete-positions-mots-cles-notifications-par-mail/"
lang: fr-FR
updated: 2021-12-08
hook_name: seopress_insights_rankings_email_query
required_version: 1.3
---

# Filtrer la requête des positions des mots clés pour les notifications par mail

- **Hook name:** `seopress_insights_rankings_email_query`
- **Required version:** 1.3

```php
add_filter('seopress_insights_rankings_email_query', 'sp_insights_rankings_email_query');
function sp_insights_rankings_email_query($args) {
	//var_dump($args) to see all the arguments
	return $args;
}
```

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



