Skip to content

Instantly share code, notes, and snippets.

@mahfuzul
Created April 30, 2025 06:55
Show Gist options
  • Save mahfuzul/48ab5b35ede6a58a565e2f5f93d001d0 to your computer and use it in GitHub Desktop.
Save mahfuzul/48ab5b35ede6a58a565e2f5f93d001d0 to your computer and use it in GitHub Desktop.
Regenerates WP Rocket config file.
/**
* Updates .htaccess, regenerates WP Rocket config file.
*/
function flush_wp_rocket() {
if ( ! function_exists( 'rocket_generate_config_file' ) ) {
return false;
}
// Regenerate WP Rocket config file.
rocket_generate_config_file();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment