WordPress登录的初始页面感觉非常的丑,而又不想使用主题自带的登录页面,所以把Blog的登录页面进行了美化,觉得挺好看的,于是分享给大家美化方法。
//修改后台登录界面背景
function custom_loginlogobg() {
echo '<style type="text/css">
body{background: url(https://img.alicdn.com/imgextra/i4/2457959088/O1CN01ci27EP2H0MG1j3hyR_!!2457959088.jpg) top left no-repeat;background-size:cover;}
</style>';
}
add_action('login_head', 'custom_loginlogobg');
//修改后台登录界面背景 结束//
//删除后台登录界面 WP官方链接
function custom_loginlogo_url($url) {
return'https://www.90lhd.com/'; //在此输入你需要链接到的URL地址
}
add_filter( 'login_headerurl', 'custom_loginlogo_url');
function custom_register_url($url) {
return'https://www.90lhd.com/'; //在此输入你需要链接到的URL地址
}
add_filter( 'login_registerurl', 'custom_register_url');
//删除后台登录界面 WP官方链接 ---结束//