> 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/template-and-output/asp_icl_t.md).

# asp\_icl\_t

Every text appearing on the front-end of the search is going through this hook - including the placeholder text, filter labels etc..

### Syntax

```php
apply_filters('asp_icl_t', $value, $name, $esc_html);
```

### Parameters

* **$value** *(string)* - The field value
* **$name** *(string)* - The field name
* **$esc\_html** *(bool)* - If the field is to be used as an attribute later.

### Usage

```php
add_filter('asp_icl_t', 'asp_icl_t_my_filter', 10, 3);
function asp_icl_t_my_filter($value, $name, $esc_html) {
  $ret = $value;
  if ($value== 'Search here...') {
    $ret = 'My custom text';
  }
  
  return $ret;
}
```
