Guest User

Untitled

a guest
Dec 17th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function test_callback($order_id, $old_status, $new_status) {
  2.  
  3. if( $new_status == "processing" ) {
  4. var_dump($woocommerce->get("/orders/$order_id")); //неправильный путь
  5. }
  6.  
  7.  
  8. }
  9.  
  10. add_action( 'woocommerce_order_status_changed', 'test_callback', 10, 3);
Add Comment
Please, Sign In to add comment