Guest User

Untitled

a guest
Apr 26th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public function test12377() {
  2. $order_id = $_POST['order_id'];
  3. $order = wc_get_order( $order_id );
  4. $order->add_note( 'my note' );
  5. }
  6.  
  7. add_action( 'wp_ajax_woocommerce_remove_order_item', 'test12377' );
  8.  
  9. $order_id = $_POST['order_id'];
Add Comment
Please, Sign In to add comment