---
title: Filtrer le titre des mails de notifications
url: "https://www.seopress.org/fr/support/hooks/filtrer-le-titre-des-mails-de-notifications/"
lang: fr-FR
updated: 2022-04-07
hook_name: seopress_insights_email_alert_title
required_version: 1.4
---

# Filtrer le titre des mails de notifications

- **Hook name:** `seopress_insights_email_alert_title`
- **Required version:** 1.4

```php
add_filter('seopress_insights_email_alert_title', 'sp_insights_email_alert_title');
function sp_insights_email_alert_title($title) {
    $title = __('My custom title','text-domain');
    return $title;
}
```

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



