user_new_form_tag
Fires inside the adduser form tag.
Description
do_action( 'user_new_form_tag' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'user_new_form_tag' );
- The following example is for adding a hook callback.
- // define the user_new_form_tag callback
- function action_user_new_form_tag( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'user_new_form_tag', 'action_user_new_form_tag', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'user_new_form_tag', 'action_user_new_form_tag', 10, 0 );
Defined (2)
The action is defined in the following location(s).
- /wp-admin/user-new.php
- do_action( 'user_new_form_tag' );
- do_action( 'user_new_form_tag' );