Editing wp-login.php
The login_message filter will allow you to change the message persisting through WordPress updates. I usually use an mu-plugin, but the below can also be added to your theme’s functions.php. Untested: add_filter( ‘login_message’, static function ( $message ) { $action = isset( $_REQUEST[‘action’] ) ? $_REQUEST[‘action’] : ‘login’; if ( ! in_array( $action, array( ‘lostpassword’, … Read more