Skip to content

Instantly share code, notes, and snippets.

@besimhu
Last active November 14, 2015 01:05
Show Gist options
  • Save besimhu/fe5648e7014588c132dc to your computer and use it in GitHub Desktop.
Save besimhu/fe5648e7014588c132dc to your computer and use it in GitHub Desktop.
<?php
function delete_its_transients() {
global $post;
if( $post->post_type == 'cpt' ) {
delete_transient( 'transient_name' );
}
}
add_action( 'save_post', 'delete_its_transients' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment