WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 492 | * |
| 493 | * Passes a contextual string to make both types of new user forms |
| 494 | * uniquely targetable. Contexts are 'add-existing-user' (Multisite), |
| 495 | * and 'add-new-user' (single site and network admin). |
| 496 | * |
| 497 | * @since 3.7.0 |
| 498 | * |
| 499 | * @param string $type A contextual string specifying which type of new user form the hook follows. |
| 500 | */ |
| 501 | do_action( 'user_new_form', 'add-existing-user' ); |
| 502 | ?> |
| 503 | <?php submit_button( __( 'Add Existing User' ), 'primary', 'adduser', true, array( 'id' => 'addusersub' ) ); ?> |
| 504 | </form> |
| 505 | <?php |
| 506 | } // End if is_multisite(). |
| 507 | |
| 508 | if ( current_user_can( 'create_users' ) ) { |
| 509 | if ( $do_both ) { |
| 510 | echo '<h2 id="create-new-user">' . __( 'Add New User' ) . '</h2>'; |
| Line | Code |
| 650 | <input type="checkbox" name="noconfirmation" id="noconfirmation" value="1" <?php checked( $new_user_ignore_pass ); ?> /> |
| 651 | <label for="noconfirmation"><?php _e( 'Add the user without sending an email that requires their confirmation' ); ?></label> |
| 652 | </td> |
| 653 | </tr> |
| 654 | <?php } ?> |
| 655 | </table> |
| 656 | |
| 657 | <?php |
| 658 | /** This action is documented in wp-admin/user-new.php */ |
| 659 | do_action( 'user_new_form', 'add-new-user' ); |
| 660 | ?> |
| 661 | |
| 662 | <?php submit_button( __( 'Add New User' ), 'primary', 'createuser', true, array( 'id' => 'createusersub' ) ); ?> |
| 663 | |
| 664 | </form> |
| 665 | <?php } // End if current_user_can( 'create_users' ). ?> |
| 666 | </div> |
| 667 | <?php |
| 668 | require_once ABSPATH . 'wp-admin/admin-footer.php'; |