# asp\_post\_content\_before\_tokenize

This filter runs just after the post content is processed and cleared from HTML etc.., before it is passed to the tokenization process.

```
apply_filters('asp_post_content_before_tokenize', $content, $post);
```

### Parameters

* **$content(string)** - the post content
* **$post(WP\_Post)** - post type object

```php
add_filter( 'asp_post_content_before_tokenize', 'asp_change_post_content_index', 10, 2 );
function asp_change_post_content_index( $content, $post ) {
    return $content. " my text";
}
```
