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