Guest User

Untitled

a guest
Dec 15th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function bb_orders_with_status() {
  2. $orders = wc_get_orders( array('numberposts' => -1) );
  3. foreach( $orders as $order ) {
  4. echo $order->get_id() . ' has status ' . $order->get_status() . '<br>';
  5. } }
  6. add_shortcode('orders_and_statuses', 'bb_orders_with_status');
Add Comment
Please, Sign In to add comment