Multisite: Add a hook to the end of the network's Add New User form.

The `network_user_new_form` action can be used to extend the new user form.

Props ptahdunbar.
Fixes #15389.


git-svn-id: https://develop.svn.wordpress.org/trunk@36556 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jeremy Felt 2016-02-17 19:14:50 +00:00
parent 181f39d2e0
commit c74db359c4
1 changed files with 11 additions and 2 deletions

View File

@ -106,8 +106,17 @@ if ( isset( $add_user_errors ) && is_wp_error( $add_user_errors ) ) { ?>
<td colspan="2"><?php _e( 'A password reset link will be sent to the user via email.' ) ?></td>
</tr>
</table>
<?php wp_nonce_field( 'add-user', '_wpnonce_add-user' ); ?>
<?php submit_button( __('Add User'), 'primary', 'add-user' ); ?>
<?php
/**
* Fires at the end of the new user form in network admin.
*
* @since 4.5.0
*/
do_action( 'network_user_new_form' );
wp_nonce_field( 'add-user', '_wpnonce_add-user' );
submit_button( __('Add User'), 'primary', 'add-user' );
?>
</form>
</div>
<?php