View custom-exclude.php
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' ); | |
} | |
} ); |
View clean-domain-post-publish.php
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_action( 'wp_rocket_loaded', function() { | |
add_action( 'clean_post_cache', function( $post_id ) { | |
rocket_clean_domain(); | |
} ); | |
} ); |
View remove-powered-by.php
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( 'rocket_htaccess_files_match', function( $rules ) { | |
$rules = '<IfModule mod_alias.c>' . PHP_EOL; | |
$rules .= '<FilesMatch "\.(html|htm|rtf|rtx|txt|xsd|xsl|xml)$">' . PHP_EOL; | |
$rules .= '<IfModule mod_headers.c>' . PHP_EOL; | |
$rules .= 'Header unset Pragma' . PHP_EOL; | |
$rules .= 'Header append Cache-Control "public"' . PHP_EOL; | |
$rules .= 'Header unset Last-Modified' . PHP_EOL; | |
$rules .= '</IfModule>' . PHP_EOL; | |
$rules .= '</FilesMatch>' . PHP_EOL . PHP_EOL; | |
$rules .= '<FilesMatch "\.(css|htc|js|asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|eot|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|json|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|otf|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|svg|svgz|swf|tar|tif|tiff|ttf|ttc|wav|wma|wri|xla|xls|xlsx|xlt|xlw|zip)$">' . PHP_EOL; |
View mobile-cache-file-tablet.php
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( 'rocket_cache_mobile_files_tablet', function( $version ) { | |
return 'mobile'; | |
} ); |
View rocket-root-path-rewrite.php
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( 'rocket_min_documentRoot', function( $document_root ) { | |
return ABSPATH; | |
} ); |
View wc-marketplace-fix.php
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
<?php | |
defined( 'ABSPATH' ) || die(); | |
add_action( 'wp_rocket_loaded', function() { | |
remove_filter( 'delete_transient_wc_products_onsale', 'wp_suspend_cache_invalidation' ); | |
}); |
NewerOlder