Advertisement
verygoodplugins

Untitled

Jul 13th, 2018
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. if ( ! wp_next_scheduled( 'wpf_import_users_daily' ) ) {
  2.     wp_schedule_event(time(), 'daily', 'wpf_import_users_daily' );
  3. }
  4.  
  5. add_action('wpf_import_users_daily', 'do_wpf_import');
  6.  
  7. function do_wpf_import() {
  8.    
  9.     wp_fusion()->batch->batch_init( 'import_users', array( 'tag' => '0t06A000000CaW8QAK' ) );
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement