---
title: Filtrer la balise Mots clés recherchés dans le titre et la méta description (%%search_keywords%%)
url: "https://www.seopress.org/fr/support/hooks/37156-2/"
lang: fr-FR
updated: 2017-12-29
hook_name: seopress_get_search_query
required_version: 2.3
---

# Filtrer la balise Mots clés recherchés dans le titre et la méta description (%%search_keywords%%)

- **Hook name:** `seopress_get_search_query`
- **Required version:** 2.3

```php
function sp_title_search_keywords($html) { 
	return __('Search results: ','your_text_domain').$html; 
}
add_filter('seopress_get_search_query', 'sp_title_search_keywords');
```

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



