porter_acf_option_defaults
Type: Filter
Location: includes/acf/option-pages.php:42
apply_filters( 'porter_acf_option_defaults', ... );
Description
Modify the value passed through this filter to customise PorterWP behaviour.
Parameters
Position
Variable
Description
1
$defaults
Description pending
Example
add_filter( 'porter_acf_option_defaults', function ( $value ) {
// Modify value here.
return $value;
} );
Last updated