我们用WordPress建设网站后,其默认登录页面中的图片是WordPress图标,而WordPress图标中的url链接是WordPress官方网站地址。
WordPress网站修改默认登录页面图片与url链接方法
网站默认登录页面的图片与url链接都指向其它网站,这对于站长与用户来说都不友好,我们需要修改一下。
先给出具体代码:
/*
修改WordPress默认登录页面的默认图片与url链接
https://www.yufeiye.com/lxsm
*/
function custom_loginlogo() {
echo '<style type="text/css">
.login h1 a {background-image: url('.get_bloginfo('template_directory').'/img/heartmv.jpg) !important;background-size: 265px !important;width:265px !important; height: 265px; }
</style>';
//要根据自己的图片大小来设置
}
add_action('login_head', 'custom_loginlogo');
// 修改链接
function custom_loginlogo_url($url) {
return'http://www.yufeiye.com/'; //在此输入你需要链接到的URL地址
}
add_filter( 'login_headerurl', 'custom_loginlogo_url');
function custom_register_url($url) {
return'https://www.yufeiye.com/'; //在此输入你需要链接到的URL地址
}
add_filter( 'login_registerurl', 'custom_register_url');
// 修改LOGO的title文字
function custom_headertitle ( $title ) {
return __( '雨飞叶-我的个人网络私密空间' );
}
add_filter('login_headertitle','custom_headertitle');
把以上代码添加到你网站当前使用主题的模板函数文件(默认是“function.php”)中即可。
这里,本作把图片改为了“雨飞叶”网站官方网址的二维码图片,url链接也改为了“https://www.yufeiye.com”。
好了,其它细节,你可以根据自己的实际情况与上面的代码注释进行完善。