> For the complete documentation index, see [llms.txt](https://knowledgebase.ajaxsearchpro.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://knowledgebase.ajaxsearchpro.com/hooks/filters/index-table-related/asp_indexing_keywords.md).

# asp\_indexing\_keywords

This filter runs just before the tokenization process is completed and the keywords are sent to the database.

{% hint style="danger" %}
The returned keywords array should only consists of **single words without space or any other delimiters**
{% endhint %}

```
apply_filters('asp_indexing_keywords', $keywords);
```

### Parameters

* **$keywords (array)** - keywords array

```php
add_filter( 'asp_indexing_keywords', 'asp_change_indexing_keywords', 10, 1 );
function asp_stop_load_css( $keywords) {
    return array_merge($keywords, array('word1', 'word2'));
}
```
