Skip to content

Instantly share code, notes, and snippets.

@Tabrisrp
Created February 21, 2019 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tabrisrp/9062636b420000e259b8bcbbb1b5dae0 to your computer and use it in GitHub Desktop.
Save Tabrisrp/9062636b420000e259b8bcbbb1b5dae0 to your computer and use it in GitHub Desktop.
// 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