porter_dynamic_blocks
Type: Filter
Location: includes/porter-config-block-styles.php:12
apply_filters( 'porter_dynamic_blocks', ... );
Description
Modify the value passed through this filter to customise PorterWP behaviour.
Parameters
Position
Variable
Description
1
$this->dynamic_blocks
Description pending
Example
add_filter( 'porter_dynamic_blocks', function ( $value ) {
// Modify value here.
return $value;
} );
Last updated