Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: 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
119           }
120
121           /**
122             * Fires after a new user has been created via the network site-new.php page.
123             *
124             * @since 4.4.0
125             *
126             * @param int $user_id ID of the newly created user.
127             */
128           do_action( 'network_site_new_created_user', $user_id );
129      }
130
131      $wpdb->hide_errors();
132      $id = wpmu_create_blog( $newdomain, $path, $title, $user_id, $meta, get_current_network_id() );
133      $wpdb->show_errors();
134      if ( ! is_wp_error( $id ) ) {
135           if ( ! is_super_admin( $user_id ) && !get_user_option( 'primary_blog', $user_id ) ) {
136                update_user_option( $user_id, 'primary_blog', $id, true );
137           }