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