# porter\_acf\_option\_defaults

**Type:** Filter\
**Location:** `includes/acf/option-pages.php:42`

```php
apply_filters( 'porter_acf_option_defaults', ... );
```

## Description

Modify the value passed through this filter to customise PorterWP behaviour.

## Parameters

| Position | Variable    | Description         |
| -------- | ----------- | ------------------- |
| 1        | `$defaults` | Description pending |

## Example

```php
add_filter( 'porter_acf_option_defaults', function ( $value ) {
    // Modify value here.
    return $value;
} );
```
