---
title: Filter pre_get_document_title priority hook
url: "https://www.seopress.org/support/hooks/filter-pre_get_document_title-priority-hook/"
lang: en-US
updated: 2021-12-23
hook_name: pre_get_document_title, seopress_titles_the_title_priority
required_version: 5.3.1
---

# Filter pre_get_document_title priority hook

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



