教你怎麼修改WordPress後台註冊登錄界面LOGO和鏈接
醬茄
將以下代碼複製到當前wordpress主題的functions.php文件里
WordPress修改登錄界面的LOGO方法
// 去登錄界面的默認圖片
function custom_loginlogo() {
echo "<style type="text/css">
h1 a {background-image: url(".get_bloginfo("template_directory")."/images/logo.png) background-size: 265px width:265px }
</style>";
}
add_action("login_head", "custom_loginlogo");
注意:記得在當前主題目錄新建:images,然後在目錄中添加圖片:logo.png
WordPress修改登錄界面默認LOGO方法
// 去鏈接
function custom_loginlogo_url($url) {
return"https://www.jiangqie.com";
}
add_filter( "login_headerurl", "custom_loginlogo_url");
function custom_register_url($url) {
return"https://www.jiangqie.com";
}
add_filter( "login_registerurl", "custom_register_url");
原文來自:醬茄 https://www.jiangqie.com/jc/5556.html
※WordPress怎麼加密某個分類的所有文章
※Regenerate Thumbnails讓WordPress重新生成特色圖像更簡單
TAG:醬茄小程序 |