# asp\_cached\_content

```php
$cache_content = apply_filters('asp_cached_content', $cached_content, $s, $id);
```

### Parameters

* **$cached\_content** (string) - Cached content
* **$s** (string ) - Search phrase
* **$id** (int) - Search ID

```php
add_filter( 'asp_cached_content', 'asp_cached_content_check', 10, 3 );
function asp_cached_content_check( $cached_content, $s, $id ) {
	return str_replace('<br>', '', $cached_content);
}
```
