verygoodplugins

Untitled

May 12th, 2020
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. function my_custom_subscriptions_init() {
  2.  
  3.     $args = array(
  4.         'numberposts' => 10,
  5.         'post_type'   => 'shop_subscription',
  6.         'post_status' => 'any',
  7.         'fields'      => 'ids',
  8.         'order'       => 'ASC',
  9.     );
  10.  
  11.     $subscriptions = get_posts( $args );
  12.  
  13.     wpf_log( 'info', 0, 'Beginning <strong>WooCommerce Subscription Meta</strong> batch operation on ' . count( $subscriptions ) . ' subscriptions', array( 'source' => 'batch-process' ) );
  14.  
  15.     return $subscriptions;
  16.  
  17. }
  18.  
  19. add_filter( 'wpf_batch_woo_subscriptions_meta_init', 'my_custom_subscriptions_init', 20 );
Add Comment
Please, Sign In to add comment