Advertisement
verygoodplugins

Untitled

Mar 4th, 2020
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. function my_test_function() {
  2.  
  3.     $started = get_transient( 'wpf_woo_started_16133' );
  4.  
  5.     if ( ! empty( $started ) ) {
  6.         return;
  7.     } else {
  8.         set_transient( 'wpf_woo_started_16133', true, HOUR_IN_SECONDS );
  9.     }
  10.  
  11.     // Any code here should only happen once, but it happened twice
  12.  
  13. }
  14.  
  15. my_test_function();
  16.  
  17. my_test_function();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement