Disable the Language Switcher on WordPress Login

PHOTO EMBED

Sun Apr 17 2022 18:24:03 GMT+0000 (Coordinated Universal Time)

Saved by @satinbest #php

//Disable the Language Switcher on WordPress Login
add_filter( 'login_display_language_dropdown', '__return_false' );
content_copyCOPY

Then, you can add the following code snippet to your functions.php file, in a site-specific plugin, or by using a code snippets plugin.

https://www.wpbeginner.com/wp-tutorials/how-to-disable-the-language-switcher-on-wordpress-login-screen/