Skip to content

Instantly share code, notes, and snippets.

@ajmorris
Forked from mikejolley/functions.php
Created April 18, 2018 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajmorris/dcab7a7c9bc83ea6e573af0fb2625ebc to your computer and use it in GitHub Desktop.
Save ajmorris/dcab7a7c9bc83ea6e573af0fb2625ebc to your computer and use it in GitHub Desktop.
WooCommerce - Notify admin when a new customer account is created
<?php // Do not include this if already open!
/**
* Code goes in theme functions.php.
*/
add_action( 'woocommerce_created_customer', 'woocommerce_created_customer_admin_notification' );
function woocommerce_created_customer_admin_notification( $customer_id ) {
wp_send_new_user_notifications( $customer_id, 'admin' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment