Skip to content

Instantly share code, notes, and snippets.

@Pross
Created October 16, 2024 11:22
Show Gist options
  • Save Pross/029092c16dc27ea3990d03c0a514e1f2 to your computer and use it in GitHub Desktop.
Save Pross/029092c16dc27ea3990d03c0a514e1f2 to your computer and use it in GitHub Desktop.
Disable mod_pagespeed
add_filter( 'fl_get_edit_url', function( $url, $post ) {
return add_query_arg( array( 'PageSpeed' => 'off' ), $url );
}, 9999, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment