by Mohamed Endisha
4.8 (18 reviews)
Secure Passkeys
Secure Passkeys is a powerful WordPress plugin that enables passwordless authentication using WebAuthn technology.
Compatible with WP 6.9.4
v1.2.4
Current Version v1.2.4
Updated 2 months ago
Last Update on 31 Jan, 2026
Refreshed 6 hours ago
Last Refreshed on
Rank
#6,695
—
No change
Active Installs
1K+
-22.9%
KW Avg Position
25.6
—
No change
Downloads
5.5K
+3 today
Support Resolved
0%
—
No change
Rating
96%
Review 4.8 out of 5
4.8
(18 reviews)
Next Milestone 2K
1K+
2K+
1,360
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 703 more installs to reach 2K+
Rank Changes
Current
#6,695
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.8
18 reviews
Overall
96%
5
17
(94%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
1
(6%)
Tracked Keywords
Showing 5 of 5| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| webauthn | 1 | — | Tag | 1 month ago |
| passkeys | 2 | — | Tag | 1 month ago |
| passwordless | 6 | — | Tag | 1 month ago |
| secure | 27 | — | Tag | 1 month ago |
| login | 92 | — | Tag | 1 month ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Support Threads Overview
Resolved
Unresolved
3
Total Threads
0
Resolved
3
Unresolved
0%
Resolution Rate
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.2.4
- Last Updated
- Jan 31, 2026
- Requires WP
- 6.0+
- Tested Up To
- 6.9.4
- PHP Version
- 7.4 or higher
- Author
- Mohamed Endisha
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.8
- Reviews
- 18
- Support Threads
- 3
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,717
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#954
InfiniteWP Client
200K+ installs
#253
Nextend Social Login and Register
200K+ installs
#256
Anti-Malware Security and Brute-Force Firewall
100K+ installs
#298
Frequently Asked Questions
Common questions about Secure Passkeys
After activating the plugin, a "Secure Passkeys" menu item will appear in your WordPress admin dashboard's sidebar.
You can add a custom theme for frontend shortcodes using the secure_passkeys_themes and secure_passkeys_themes_paths filters. Register the Theme: Use the secure_passkeys_themes filter to register your new theme and make it available in the plugin settings. <?php add_filter('secure_passkeys_themes', function ($themes) { $themes['new_theme'] = 'New Theme'; return $themes; }, 10, 1); Specify the Theme Path: Use the secure_passkeys_themes_paths filter to define the file path to your custom theme's directory. <?php add_filter('secure_passkeys_themes_paths', function ($themes) { $themes['new_theme'] = 'your/path/new/theme/folder'; return $themes; }, 10, 1); Override Template Files: Copy the template files you wish to customize from secure-passkeys/src/views/frontend/default/ to your custom theme's folder (your/path/to/new/theme/folder). Any files not copied to your custom theme folder will be loaded from the plugin's default theme, providing a fallback mechanism. This allows you to customize only the files you need to change.
Yes, you can redirect users after a passkey login by using the secure_passkeys_login_redirect_url filter. You can add the following code snippets to your theme's functions.php file. Example – Redirect to a Specific URL: This example redirects all users to a specific URL after they log in. <?php add_filter('secure_passkeys_login_redirect_url', function ($redirect_to) { // Redirect users to a custom URL after logging in with a passkey return 'https://your-domain.com/your-custom-path'; }); Example – Redirect Based on User Role: This example redirects users based on their assigned role. <?php add_filter('secure_passkeys_login_redirect_url', function ($redirect_to) { $user = wp_get_current_user(); // Redirect administrators to the WP admin dashboard if (in_array('administrator', $user->roles)) { return admin_url(); } // Redirect subscribers to a custom dashboard page if (in_array('subscriber', $user->roles)) { return home_url('/dashboard'); } // Default fallback URL return $redirect_to; });
Yes! The plugin offers a variety of filters and actions that allow developers to customize and extend its functionality. If you're a developer, we encourage you to explore these hooks and tailor the plugin to meet your specific needs. For a complete list of available hooks and examples, refer to the plugin’s codebase.