Skip to content

Instantly share code, notes, and snippets.

@ashfame
Created December 27, 2014 18:58
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 ashfame/3b64e4d2b17a1ee13c09 to your computer and use it in GitHub Desktop.
Save ashfame/3b64e4d2b17a1ee13c09 to your computer and use it in GitHub Desktop.
<?php
add_action( 'set_transient_my_transient', function( $value, $expiration ) {
$desired_expiration = 600;
if ( $expiration != $desired_expiration ) {
set_transient( 'my_transient', $value, $desired_expiration );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment