Filter hook 'wpmu_welcome_notification'

in WP Core File wp-includes/ms-functions.php at line 1614

Description

Filters whether to bypass the welcome email sent to the site administrator after site activation. Returning false disables the welcome email.

Occurrences

Filename Line Number
wp-includes/ms-functions.php 1614

Parameters

Type Name Description
int|false $blog_id Site ID, or false to prevent the email from sending.
int $user_id User ID of the site administrator.
string $password User password, or "N/A" if the user account is not new.
string $title Site title.
array $meta Signup meta data. By default, contains the requested privacy setting and lang_id.

PHP Doc

/**
	 * Filters whether to bypass the welcome email sent to the site administrator after site activation.
	 *
	 * Returning false disables the welcome email.
	 *
	 * @since MU (3.0.0)
	 *
	 * @param int|false $blog_id  Site ID, or false to prevent the email from sending.
	 * @param int       $user_id  User ID of the site administrator.
	 * @param string    $password User password, or "N/A" if the user account is not new.
	 * @param string    $title    Site title.
	 * @param array     $meta     Signup meta data. By default, contains the requested privacy setting and lang_id.
	 */