---
title: Filter analyzed target keywords by the content analysis
url: "https://www.seopress.org/support/hooks/filter-analyzed-target-keywords-by-the-content-analysis/"
lang: en-US
updated: 2022-02-15
hook_name: seopress_content_analysis_target_keywords
required_version: 5.5
---

# Filter analyzed target keywords by the content analysis

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



