No SSL on your WordPress website

If you don’t have SSL but have a higher WP Version than WP 5.6 installed, you will need to manually add this code to your function.php:

add_filter( ‘wp_is_application_passwords_available’, ‘__return_true’ );

After that, it should be possible to create application passwords in your user profile.

Leave a Comment