For the complete documentation index, see llms.txt. This page is also available as Markdown.

porter_public_scripts_default_args

Type: Filter Location: includes/porter-config-public.php:90

apply_filters( 'porter_public_scripts_default_args', ... );

Description

Modify the value passed through this filter to customise PorterWP behaviour.

Parameters

Position
Variable
Description

1

$defaults

Description pending

Example

add_filter( 'porter_public_scripts_default_args', function ( $value ) {
    // Modify value here.
    return $value;
} );

Last updated