Advertisement
verygoodplugins

Untitled

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