彻底改造WordPress登录注册界面包括以下三个部分:
- 修改默认登录界面的LOGO图片;
- 修改默认登录界面的LOGO的链接地址为自己网站的地址;
- 修改默认登录界面的LOGO的TITLE标签内容;
- 添加登录注册界面的背景图片,修改登录,注册框的样式及按钮样式。
方法/步骤
将以下代码复制粘贴到wordpress模板的functions.php文件里;
修改默认登录界面的LOGO图片
// 去登录界面的默认图片
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’http://www.xuewangzhan.net/’; //在此输入你需要链接到的URL地址
}
add_filter( ‘login_headerurl’, ‘custom_loginlogo_url’);
function custom_register_url($url) {
return’http://www.xuewangzhan.net/’; //在此输入你需要链接到的URL地址
}
add_filter( ‘login_registerurl’, ‘custom_register_url’);
修改默认登录界面的LOGO的TITLE标签内容
// 去LOGO的title文字
function custom_headertitle ( $title ) {
return __( ‘学做网站论坛’ );
}
add_filter(‘login_headertitle’,’custom_headertitle’);
添加登录注册界面的背景图片,修改登录,注册框的样式及按钮样式
// 添加背景图片
function custom_loginlogo() {
echo ‘<style type=”text/css”>
body{background: url(‘.get_bloginfo(‘template_directory’).’/images/bg2.jpg) center center no-repeat;}
#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_loginlogo’);
注意:要放一张大尺寸的背景图片在images文件夹下,取名为bg2.jpg,才能正常显示背景图片。
通过以上几个步骤的修改,我们就可以在自己做网站时彻底改造wodpress程序默认的登录注册界面了。
未经允许不得转载:周军博客 » 彻底改造WordPress登录注册界面及LOGO链接
评论前必须登录!
登陆 注册