mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://github.com/Charitable/library/blob/master/notifications/send-notifications-on-user-registration.php
5 lines
195 B
Text
5 lines
195 B
Text
function charitable_notify_new_user($user_id, $values) {
|
|
wp_new_user_notification( $user_id, null, 'admin' );
|
|
}
|
|
|
|
add_action('charitable_after_insert_user', 'charitable_notify_new_user', 10, 2);
|