porter_block_path
Type: Filter
Location: includes/traits/blocks.php:68
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
add_filter( 'porter_block_path', function ( $value ) {
// Modify value here.
return $value;
} );
Last updated