Created
October 16, 2024 11:22
-
-
Save Pross/029092c16dc27ea3990d03c0a514e1f2 to your computer and use it in GitHub Desktop.
Disable mod_pagespeed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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