透過本文的程式碼可以改變滑鼠懸停在 WordPress 登入頁面標誌時的提示文字。
將下面的程式碼貼上到你的主題 functions.php 檔案。
function  custom_login_title() {
        return 'Your desired text';
}
add_filter('login_headertitle', 'custom_login_title');

修改第 2 行的提示文字。