porter_core_blockstyles_path
Last updated
Type: Filter
Location: includes/porter-config-core-blocks.php:81
apply_filters( 'porter_core_blockstyles_path', ... );Modify the value passed through this filter to customise PorterWP behaviour.
1
get_stylesheet_directory() . '/porter/inc/block/core/styles/css/'
Description pending
add_filter( 'porter_core_blockstyles_path', function ( $value ) {
// Modify value here.
return $value;
} );Last updated