# porter\_dynamic\_blocks

**Type:** Filter\
**Location:** `includes/porter-config-block-styles.php:12`

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

## Description

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

## Parameters

| Position | Variable                | Description         |
| -------- | ----------------------- | ------------------- |
| 1        | `$this->dynamic_blocks` | Description pending |

## Example

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