> For the complete documentation index, see [llms.txt](https://developers.weglot.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.weglot.com/wordpress/helpers-functions-1/weglot_get_option.md).

# weglot\_get\_option

Lets you change the value of a single option, identified by its key.

```php
add_filter( 'weglot_get_option', 'custom_weglot_get_option', 10, 3 );
function custom_weglot_get_option( $value, $key, $options ) {
    if ( 'auto_redirect' === $key ) {
        return false;
    }
    return $value;
}
```
