DIY WordPress后台登陆样式代码分享

有时候用WordPress给客户搭建网站,但是后台登录界面可能需要修改成客户需求的界面,所以你需要DIY WordPress后台登陆,下面小羿给大家分享代码:

//去登录界面的默认图片
function custom_loginlogo() {
echo '<style type="text/css">
h1 a {background-image: url('.get_bloginfo('template_directory').'/images/logo.png) !important;background-size: 265px !important;width:265px !important; }
</style>';
}
add_action('login_head', 'custom_loginlogo');
// 修改默认登录界面的 LOGO 的链接地址为自己网站的地址
function custom_loginlogo_url($url) {
return'https://dedewp.com/'; //在此输入你需要链接到的 URL 地址
}
add_filter( 'login_headerurl', 'custom_loginlogo_url');
function custom_register_url($url) {
return'https://dedewp.com/'; //在此输入你需要链接到的 URL 地址
}
add_filter( 'login_registerurl', 'custom_register_url');
// 去 LOGO 的 title 文字
function custom_headertitle ( $title ) {
return __( 'WordPress 一站式建站服务平台' );
}
add_filter('login_headertitle','custom_headertitle');
// 添加登录注册界面的背景图片,修改登录,注册框的样式及按钮样式
function custom_loginbg() {
echo '<style type="text/css">body{background: url('.get_bloginfo('template_directory').'/images/bg2.jpg) center center no-repeat;background-size: cover;}#login{position:absolute;bottom:10%;right:5%;}.login #nav{font-size:16px;}.wp-core-ui .button-group.button-large .button, .wp-core-ui .button.button-large {height: 35px;width: 100%;margin: 10px auto;line-height: 32px;padding: 0 12px 2px;}#backtoblog{display:none;}</style>';
}
add_action('login_head', 'custom_loginbg');

# 更多WordPress技巧,请关注「WordPress专题