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

porter_core_blockstyles_path

Type: Filter Location: includes/porter-config-core-blocks.php:81

apply_filters( 'porter_core_blockstyles_path', ... );

Description

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

Parameters

Position
Variable
Description

1

get_stylesheet_directory() . '/porter/inc/block/core/styles/css/'

Description pending

Example

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

Last updated