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
282      }
283 ?>
284 <?php
285 /**
286  * Fires inside the adduser form tag.
287  *
288  * @since 3.0.0
289  */
290 ?>
291 <form action="" method="post" name="adduser" id="adduser" class="validate" novalidate="novalidate"<?php do_action( 'user_new_form_tag' );?>>
292 <input name="action" type="hidden" value="adduser" />
293 <?php wp_nonce_field( 'add-user', '_wpnonce_add-user' ) ?>
294
295 <table class="form-table">
296      <tr class="form-field form-required">
297           <th scope="row"><label for="adduser-email"><?php echo $label; ?></label></th>
298           <td><input name="email" type="<?php echo $type; ?>" id="adduser-email" class="wp-suggest-user" value="" /></td>
299      </tr>
300      <tr class="form-field">
 
Line Code
330 <?php
331 } // is_multisite()
332
333 if ( current_user_can( 'create_users') ) {
334      if ( $do_both )
335           echo '<h3 id="create-new-user">' . __( 'Add New User' ) . '</h3>';
336 ?>
337 <p><?php _e('Create a brand new user and add them to this site.'); ?></p>
338 <?php /** This action is documented in wp-admin/user-new.php */ ?>
339 <form action="" method="post" name="createuser" id="createuser" class="validate" novalidate="novalidate"<?php do_action( 'user_new_form_tag' );?>>
340 <input name="action" type="hidden" value="createuser" />
341 <?php wp_nonce_field( 'create-user', '_wpnonce_create-user' ); ?>
342 <?php
343 // Load up the passed data, else set to a default.
344 $creating = isset( $_POST['createuser'] );
345
346 $new_user_login = $creating && isset( $_POST['user_login'] ) ? wp_unslash( $_POST['user_login'] ) : '';
347 $new_user_firstname = $creating && isset( $_POST['first_name'] ) ? wp_unslash( $_POST['first_name'] ) : '';
348 $new_user_lastname = $creating && isset( $_POST['last_name'] ) ? wp_unslash( $_POST['last_name'] ) : '';