Advertisement
verygoodplugins

Untitled

Mar 27th, 2019
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. if ( ! wp_next_scheduled( 'wpf_orders_hourly' ) ) {
  2.     wp_schedule_event(time(), 'hourly', 'wpf_orders_hourly' );
  3. }
  4. add_action('wpf_orders_hourly', 'do_wpf_orders');
  5.  
  6. function do_wpf_orders() {
  7.    
  8.     wp_fusion()->batch->batch_init( 'woocommerce' );
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement