Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: user_new_form_tag

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

This hook occurs 2 times in this file.

Line Code
280      }
281 ?>
282 <?php
283 /**
284  * Fires inside the adduser form tag.
285  *
286  * @since 3.0.0
287  */
288 ?>
289 <form action="" method="post" name="adduser" id="adduser" class="validate"<?php do_action( 'user_new_form_tag' );?>>
290 <input name="action" type="hidden" value="adduser" />
291 <?php wp_nonce_field( 'add-user', '_wpnonce_add-user' ) ?>
292
293 <table class="form-table">
294      <tr class="form-field form-required">
295           <th scope="row"><label for="adduser-email"><?php echo $label; ?></label></th>
296           <td><input name="email" type="text" id="adduser-email" class="wp-suggest-user" value="" /></td>
297      </tr>
298      <tr class="form-field">
 
Line Code
328 <?php
329 } // is_multisite()
330
331 if ( current_user_can( 'create_users') ) {
332      if ( $do_both )
333           echo '<h3 id="create-new-user">' . __( 'Add New User' ) . '</h3>';
334 ?>
335 <p><?php _e('Create a brand new user and add them to this site.'); ?></p>
336 <?php /** This action is documented in wp-admin/user-new.php */ ?>
337 <form action="" method="post" name="createuser" id="createuser" class="validate"<?php do_action( 'user_new_form_tag' );?>>
338 <input name="action" type="hidden" value="createuser" />
339 <?php wp_nonce_field( 'create-user', '_wpnonce_create-user' ); ?>
340 <?php
341 // Load up the passed data, else set to a default.
342 foreach ( array( 'user_login' => 'login', 'first_name' => 'firstname', 'last_name' => 'lastname',
343                     'email' => 'email', 'url' => 'uri', 'role' => 'role', 'send_password' => 'send_password', 'noconfirmation' => 'ignore_pass' ) as $post_field => $var ) {
344      $var = "new_user_$var";
345      if( isset( $_POST['createuser'] ) ) {
346           if ( ! isset($$var) )