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