Add `woocommerce_order_note_added` action

This action provides an easier way to perform an action when a non-customer order note is added.
This commit is contained in:
Dan Bitzer 2020-06-23 16:51:57 +09:30
parent 3763d3b428
commit 9cddd9ae18
1 changed files with 2 additions and 0 deletions

View File

@ -1731,6 +1731,8 @@ class WC_Order extends WC_Abstract_Order {
);
}
do_action( 'woocommerce_order_note_added', $comment_id, $this );
return $comment_id;
}