---
title: Filtrer les mots clés cibles analysés par l&rsquo;analyse de contenu
url: "https://www.seopress.org/fr/support/hooks/filtrer-les-mots-cles-cibles-analyses-par-lanalyse-de-contenu/"
lang: fr-FR
updated: 2022-02-15
hook_name: seopress_content_analysis_target_keywords
required_version: 5.5
---

# Filtrer les mots clés cibles analysés par l&rsquo;analyse de contenu

- **Hook name:** `seopress_content_analysis_target_keywords`
- **Required version:** 5.5

```php
add_filter('seopress_content_analysis_target_keywords', 'sp_content_analysis_target_keywords', 10, 2);
function sp_content_analysis_target_keywords($keywords, $post_id) {
    $keywords[] = get_post_meta( $post_id, 'acf_keyword', true );
    return $keywords;
}
```

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



