Prevent WP Rocket from deferring FWP_JSON with debug mode enabled in FacetWP

Prevent WP Rocket from deferring FWP_JSON with debug mode enabled in FacetWP on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'rocket_defer_inline_exclusions', function( $exclusions ) {
    $exclusions[] = 'FWP_JSON';
    return $exclusions;
});

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.