wp_is_application_passwords_supported() WordPress Function
This function checks if the application passwords is support by the current user. Application passwords are used to access Wordpress from outside of the Wordpress application.
wp_is_application_passwords_supported() #
Checks if Application Passwords is supported.
Description
Application Passwords is supported only by sites using SSL or local environments but may be made available using the ‘wp_is_application_passwords_available’ filter.
Return
(bool)
Source
File: wp-includes/user.php
function wp_is_application_passwords_supported() { return is_ssl() || 'local' === wp_get_environment_type(); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.9.0 | Introduced. |