wpmu_welcome_notification filter-hookWP 3.0.0

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

Returning false disables the welcome email.

Usage

add_filter( 'wpmu_welcome_notification', 'wp_kama_wpmu_welcome_notification_filter', 10, 5 );

/**
 * Function for `wpmu_welcome_notification` filter-hook.
 * 
 * @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.
 *
 * @return int|false
 */
function wp_kama_wpmu_welcome_notification_filter( $blog_id, $user_id, $password, $title, $meta ){

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

Changelog

Since 3.0.0 Introduced.

Where the hook is called

wpmu_welcome_notification()
wpmu_welcome_notification
wp-includes/ms-functions.php 1614
if ( ! apply_filters( 'wpmu_welcome_notification', $blog_id, $user_id, $password, $title, $meta ) ) {

Where the hook is used in WordPress

Usage not found.