wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_is_application_passwords_available › WordPress Function

Depuis5.6.0
Dépréciéen/a
wp_is_application_passwords_available ( Pas de paramètres )
Retourne:
  • (bool)
Défini(e) dans:
Codex:

Checks if Application Passwords is globally available.

By default, Application Passwords is available to all sites using SSL or to local environments. Use the {@see 'wp_is_application_passwords_available'} filter to adjust its availability.


Source

function wp_is_application_passwords_available() {
	/**
	 * Filters whether Application Passwords is available.
	 *
	 * @since 5.6.0
	 *
	 * @param bool $available True if available, false otherwise.
	 */
	return apply_filters( 'wp_is_application_passwords_available', wp_is_application_passwords_supported() );
}