WP_Application_Passwords::application_name_exists_for_user()public staticWP 5.7.0

Checks if an application password with the given name exists for this user.

Method of the class: WP_Application_Passwords{}

No Hooks.

Return

true|false. Whether the provided application name exists.

Usage

$result = WP_Application_Passwords::application_name_exists_for_user( $user_id, $name );
$user_id(int) (required)
User ID.
$name(string) (required)
Application name.

Changelog

Since 5.7.0 Introduced.

WP_Application_Passwords::application_name_exists_for_user() code WP 6.5.2

public static function application_name_exists_for_user( $user_id, $name ) {
	$passwords = static::get_user_application_passwords( $user_id );

	foreach ( $passwords as $password ) {
		if ( strtolower( $password['name'] ) === strtolower( $name ) ) {
			return true;
		}
	}

	return false;
}