# $field->isFalse()

Converts the field value into a proper boolean and inverts it

****

- Source: <https://github.com/getkirby/kirby/tree/5.5.3/config/methods.php#L41>

****

```php
$field->isFalse(): bool
```

## Return type

`bool`

This method modifies the existing `$field` object it is applied to and returns it again.


## Examples

```php
<?php if ($page->robots()->isFalse()): ?>
<meta name="robots" content="noindex,nofollow">
<?php endif ?>
```