Passwordless passkey login for WordPress. Let users sign in with a fingerprint, Face ID, Touch ID, or Windows Hello. No password, no friction, no phishing.
Authentry brings passkey authentication to WordPress. One tap. One glance. Instantly signed in.
No passwords to type. No usernames to remember. No resets, no friction, no phishing.
Passkeys are built on the WebAuthn / FIDO2 standard, the same technology trusted by Google, Apple, and Microsoft. Authentry brings that same enterprise-grade security to any WordPress site, for free.
They unlock their phone with a fingerprint or Face ID dozens of times a day. Authentry makes signing into your site feel exactly the same.
Hereβs the flow: user taps the Authentry button confirms with Touch ID, Face ID, Android fingerprint, or Windows Hello theyβre in. Thatβs it.
Enable usernameless login in settings and they donβt even need to type their email. The site finds their passkey automatically, as effortless as unlocking their phone.
π‘ Perfect for: membership sites, WooCommerce stores, subscription platforms, and any audience that expects a fast, modern, mobile-first experience.
[authentry_manage] shortcode[authentry_button] to sign in, [authentry_register] to add a passkey, [authentry_manage] for the full management UI[authentry_button label="Sign in with Passkey" style="default" redirect="" class=""]
[authentry_register label="Add a passkey" style="default" class="" reload="1"]
Omit label to use the value set in Appearance settings. Set reload="0" to stay on the page after a successful registration.
[authentry_manage class="" title=""]
Lists all passkeys with rename, delete, and add controls, the same UI shown in WooCommerce My Account and the WP Admin profile page. Scripts load automatically.
[authentry_button]label: button text (default: from Appearance settings)style: default, outline, or ghostredirect: URL to send the user after a successful loginclass: additional CSS class names[authentry_register]label: button text (default: from Appearance settings)style: default, outline, or ghostclass: extra CSS class on the wrapperreload: 1 (default) reloads the page after registration; 0, false, or no stays on the current page[authentry_manage]class: extra CSS class on the wrappertitle: optional section heading (default: βSecurity Keysβ; also filterable via authentry_manage_heading)Already have a custom login page? No problem. Just drop the Authentry button in and keep your existing form. No need to rebuild anything.
β Recommended: Shortcode
Add a Shortcode block:
[authentry_button]
Optionally, pass attributes:
[authentry_button label=βSign in with Passkeyβ redirect=βhttps://yoursite.com/my-account/β style=βoutlineβ]
Authentry automatically enqueues its CSS and JavaScript on standard front-end pages. No extra setup needed.
Alternative: PHP Template
In your login template file:
do_action( 'authentry_render_button', [ 'redirect' => home_url( '/my-account/' ) ] );
Any missing keys fall back to your Authentry > Appearance and General settings.
When usernameless login is off, or when a browser falls back from discovery mode, Authentry looks for a username or email field using these selectors:
#user_login (WordPress default)input[name="username"]input[name="email"]If the field is already filled when the user clicks the button, that value is sent automatically. If itβs empty, the user is prompted. With usernameless login on, users can often sign in without typing anything at all.
On any member dashboard or account page (logged-in users), add the full management UI:
[authentry_manage]
Or just the βAdd a passkeyβ button with no list:
[authentry_register]
In a theme template:
do_action( 'authentry_render_manage', [ 'title' => 'Security Keys' ] );
If the button is printed after wp_enqueue_scripts, for example in some page builders or AJAX-loaded forms, fire this hook once before output:
do_action( 'authentry_enqueue_public_assets' );
The [authentry_register] and [authentry_manage] shortcodes handle this automatically. Use the same hook in custom templates if styles or scripts appear to be missing.
redirect attribute on [authentry_button], or the redirect key in authentry_render_buttonauthentry_redirect_url filterauthentry_button_html filterSee Authentry > Integration in the admin for the full reference of shortcodes, actions, filters, and REST API endpoints (/wp-json/authentry/v1/...). The global window.Authentry object is also available for advanced JavaScript integrations.
Hook-Only Example (theme login template)
Step 1 β In your login markup:
do_action( 'authentry_render_button', [ 'context' => 'my-theme-login' ] );
Step 2 β In functions.php or your login class:
add_filter( 'authentry_login_username_selectors', function( $selectors ) {
$selectors[] = '#my-login-email';
return $selectors;
} );
add_filter( 'authentry_redirect_url', function( $url, $user ) {
return home_url( '/account/' );
}, 10, 2 );
do_action( 'authentry_render_button', $args );
do_action( 'authentry_render_manage', [ 'class' => '', 'title' => '' ] );
authentry_creation_options: modify WebAuthn credential creation optionsauthentry_request_options: modify WebAuthn authentication request optionsauthentry_redirect_url: modify the post-login redirect URLauthentry_button_html: modify the rendered login button HTMLauthentry_register_shortcode_html: modify the rendered [authentry_register] HTMLauthentry_manage_shortcode_html: modify the rendered [authentry_manage] HTMLauthentry_manage_heading: modify the section heading on the management UIauthentry_render_manage_args: adjust args before authentry_render_manage outputauthentry_render_button_args: adjust args before authentry_render_button outputauthentry_login_username_selectors: CSS selectors for username/email fields on custom login formsauthentry_enqueue_public_assets: enqueue public CSS/JS (useful when output is built late)authentry_before_manage_passkeys / authentry_after_manage_passkeys: fires before/after the management UI blockauthentry_before_render_login_button: fires before sign-in button HTML is echoed in custom templatesauthentry_after_render_login_button: fires after sign-in button HTML is echoed in custom templates