通过本文的代码可以改变鼠标悬停在 WordPress 登录页面标志时的提示文字。
将下面的代码粘贴到你的主题 functions.php 文件。
function  custom_login_title() {
        return 'Your desired text';
}
add_filter('login_headertitle', 'custom_login_title');

修改第 2 行的提示文字。