Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dryan1144
Last active December 24, 2019 20:11
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 dryan1144/68d47e6623ed9d79193d529006129997 to your computer and use it in GitHub Desktop.
Save dryan1144/68d47e6623ed9d79193d529006129997 to your computer and use it in GitHub Desktop.
Clear transient on post save
<?php
function yournamespace_delete_transient( $post_id, $post, $update ) {
delete_transient('yournamespace_data_example');
}
//{your_post_type} with a custom post type
add_action('save_post_{your_post_type}', 'yournamespace_delete_transient', 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment