Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_network_site_new_created_user

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
100      $user_id = email_exists($email);
101      if ( !$user_id ) { // Create a new user with a random password
102           /**
103            * Fires immediately before a new user is created via the network site-new.php page.
104            *
105            * @since 4.5.0
106            *
107            * @param string $email Email of the non-existent user.
108            */
109           do_action( 'pre_network_site_new_created_user', $email );
110
111           $user_id = username_exists( $domain );
112           if ( $user_id ) {
113                wp_die( __( 'The domain or path entered conflicts with an existing username.' ) );
114           }
115           $password = wp_generate_password( 12, false );
116           $user_id = wpmu_create_user( $domain, $password, $email );
117           if ( false === $user_id ) {
118                wp_die( __( 'There was an error creating the user.' ) );