For the complete documentation index, see llms.txt. This page is also available as Markdown.

porter_wp_inc_filepath_exclusions

Type: Filter Location: includes/traits/inc.php:29

apply_filters( 'porter_wp_inc_filepath_exclusions', ... );

Description

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

Parameters

Position
Variable
Description

1

$exclude_paths

Description pending

Example

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

Last updated