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