wp_create_application_password_form action-hookWP 5.6.0

Fires in the create Application Passwords form.

Usage

add_action( 'wp_create_application_password_form', 'wp_kama_create_application_password_form_action' );

/**
 * Function for `wp_create_application_password_form` action-hook.
 * 
 * @param WP_User $profile_user The current WP_User object.
 *
 * @return void
 */
function wp_kama_create_application_password_form_action( $profile_user ){

	// action...
}
$profile_user(WP_User)
The current WP_User object.

Changelog

Since 5.6.0 Introduced.

Where the hook is called

In file: /wp-admin/user-edit.php
wp_create_application_password_form
wp-admin/user-edit.php 825
do_action( 'wp_create_application_password_form', $profile_user );

Where the hook is used in WordPress

Usage not found.