Guest User

Untitled

a guest
Jun 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function wc_change_admin_new_order_email_recipient( $recipient, $order ) {
  2. global $woocommerce;
  3.  
  4. //some code
  5. return $recipient;
  6. }
  7. add_filter('woocommerce_email_recipient_new_order', 'wc_change_admin_new_order_email_recipient', 10, 2);
Add Comment
Please, Sign In to add comment