wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_is_application_passwords_supported › WordPress Function

Seit5.9.0
Veraltetn/v
wp_is_application_passwords_supported ( Keine Parameter )
Gibt zurück:
  • (bool)
Definiert in:
Codex:

Checks if Application Passwords is supported.

Application Passwords is supported only by sites using SSL or local environments but may be made available using the {@see 'wp_is_application_passwords_available'} filter.


Quellcode

function wp_is_application_passwords_supported() {
	return is_ssl() || 'local' === wp_get_environment_type();
}