WP_Application_Passwords::application_name_exists_for_user( int $user_id, string $name ): bool

In this article

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

Parameters

$user_idintrequired
User ID.
$namestringrequired
Application name.

Return

bool Whether the provided application name exists.

Source

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;
}

Changelog

VersionDescription
5.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.