mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
4 lines
233 B
Text
4 lines
233 B
Text
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' );
|
|
}
|