# porter\_wp\_inc\_filepath

**Type:** Filter\
**Location:** `includes/traits/inc.php:15`

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

## Description

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

## Parameters

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

## Example

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