Skip to content

Instantly share code, notes, and snippets.

@damianwajer
Created August 25, 2015 12:27
Show Gist options
  • Select an option

  • Save damianwajer/ea5f4f17b6aaef9785ad to your computer and use it in GitHub Desktop.

Select an option

Save damianwajer/ea5f4f17b6aaef9785ad to your computer and use it in GitHub Desktop.
[WordPress] [WP Super Cache] Manually clear the cache from the code
<?php
/**
* Clear the cache on specific page
*/
if ( function_exists( 'wp_cache_post_change' ) ) {
$GLOBALS["super_cache_enabled"] = 1;
wp_cache_post_change( $post_id );
}
/**
* Clear all cache
*/
if ( function_exists( 'wp_cache_post_change' ) ) {
wp_cache_clear_cache();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment