Created
February 21, 2019 16:06
-
-
Save remyperona/9062636b420000e259b8bcbbb1b5dae0 to your computer and use it in GitHub Desktop.
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
// Exclude page from cache but keep optimizations. | |
add_action( 'wp_rocket_loaded', function() { | |
// Exclude post type with ID = 1. | |
if ( is_single(1) ) { | |
add_filter( 'do_rocket_generate_caching_files', '__return_false' ); | |
} | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment