Skip to content

Instantly share code, notes, and snippets.

@ucheng
Created March 21, 2017 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ucheng/4fb904de01156c33ca95627e540fbae6 to your computer and use it in GitHub Desktop.
Save ucheng/4fb904de01156c33ca95627e540fbae6 to your computer and use it in GitHub Desktop.
get woo orders with custom status
<?php
$orders = get_posts( array(
'post_type' => 'shop_order',
'post_status' => array('wc-packing')
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment