Disable Also aggregate inline JS by page slug in Autoptimize

Disable Also aggregate inline JS by page slug in Autoptimize on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter('autoptimize_js_include_inline', function( $state ) {
  if ( is_page( 'YOUR_PAGE_SLUG_HERE' ) ) {
    return false;
  }
return true;
});

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