Skip to content

Instantly share code, notes, and snippets.

@cybersholt
Created April 18, 2017 22:23
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 cybersholt/26b82ee523c675f5a987c2aec1ba8bba to your computer and use it in GitHub Desktop.
Save cybersholt/26b82ee523c675f5a987c2aec1ba8bba to your computer and use it in GitHub Desktop.
Clear wp cache on save or update
<?php
function clear_cache_c() {
wp_cache_clear_cache();
}
add_action( 'publish_post', 'clear_cache_c', 10, 2 );
add_action( 'post_updated', 'clear_cache_c', 10, 3 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment