user_edit_form_tag action-hookWP 3.0.0

Fires inside the your-profile form tag on the user editing screen.

Usage

add_action( 'user_edit_form_tag', 'wp_kama_user_edit_form_tag_action' );

/**
 * Function for `user_edit_form_tag` action-hook.
 * 
 * @return void
 */
function wp_kama_user_edit_form_tag_action(){

	// action...
}

Changelog

Since 3.0.0 Introduced.

Where the hook is called

In file: /wp-admin/user-edit.php
user_edit_form_tag
wp-admin/user-edit.php 278
do_action( 'user_edit_form_tag' );

Where the hook is used in WordPress

Usage not found.