---
title: Filtrer la priorité du hook pre_get_document_title
url: "https://www.seopress.org/fr/support/hooks/filtrer-la-priorite-du-hook-pre_get_document_title/"
lang: fr-FR
updated: 2021-12-23
hook_name: pre_get_document_title, seopress_titles_the_title_priority
required_version: 5.3.1
---

# Filtrer la priorité du hook pre_get_document_title

- **Hook name:** `pre_get_document_title, seopress_titles_the_title_priority`
- **Required version:** 5.3.1

```php
add_filter('seopress_titles_the_title_priority', 'sp_titles_the_title_priority');
function sp_titles_the_title_priority($priority) {
    //default: 10
    $priority = 20;
    return $priority;
}
```

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



