# porter\_default\_object\_args

**Type:** Filter\
**Location:** `includes/porter-config.php:128`

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

## Description

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

## Parameters

| Position | Variable | Description         |
| -------- | -------- | ------------------- |
| 1        | `$args`  | Description pending |
| 2        | `$group` | Description pending |

## Example

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