wp_send_new_user_notification_to_admin

wp_send_new_user_notification_to_admin

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('wp_send_new_user_notification_to_admin') is found 1 times:

  • /wp-includes/pluggable.php line 2152
    		 *
    		 * @param bool    $send Whether to send the email. Default true.
    		 * @param WP_User $user User object for new user.
    		 */
    		$send_notification_to_admin = apply_filters( 'wp_send_new_user_notification_to_admin', true, $user );
    
    		if ( 'user' !== $notify && true === $send_notification_to_admin ) {
    			$switched_locale = switch_to_locale( get_locale() );
    
    			/* translators: %s: Site title. */
    			$message = sprintf( __( 'New user registration on your site %s:' ), $blogname ) . "\r\n\r\n";