# porter\_blocks\_array

**Type:** Filter\
**Location:** `includes/premium/custom-blocks/init.php:241`

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

## Description

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

## Parameters

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

## Example

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