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

porter_core_pattern_categories

Type: Filter Location: includes/porter-config-patterns.php:206

apply_filters( 'porter_core_pattern_categories', ... );

Description

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

Parameters

Position
Variable
Description

1

$this->core_pattern_categories

Description pending

Example

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

Last updated