# porter\_block\_path

**Type:** Filter\
**Location:** `includes/traits/blocks.php:68`

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

## Description

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

## Parameters

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

## Example

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