porter_wp_config_filepath
Last updated
Type: Filter
Location: includes/traits/config.php:58
apply_filters( 'porter_wp_config_filepath', ... );Modify the value passed through this filter to customise PorterWP behaviour.
1
$filepath
Description pending
2
$file
Description pending
add_filter( 'porter_wp_config_filepath', function ( $value, $file ) {
// Modify value here.
return $value;
} );Last updated