改变WordPress登录页面标志提示文字

通过本文的代码可以改变鼠标悬停在WordPress登录页面标志时的提示文字。

将下面的代码粘贴到你的主题 functions.php 文件。

    function  custom_login_title() {
            return 'Your desired text';
    }
    add_filter('login_headertitle', 'custom_login_title');

 

修改第2行的提示文字。

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *