WordPress如何修改登陆页面LOGO
使用代码我们可以在当前wordpress建站主题的functions.php文件中添加下面的代码:
function custom_loginlogo() {
echo '<style type="text/css">
h1 a {background-image: url('.get_bloginfo('template_directory').'/images/login_logo.png) !important; }
</style>';
}
add_action('login_head', 'custom_loginlogo');
接下来把你自己的LOGO文件名修改为【login_logo.png】,然后上传到当前wordpress建站主题目录下的【images】文件夹中,如果没有这个文件夹,可以自己新建一个。
接下来我们修改logo的链接,再在wordpress建站主题的functions.php文件中添加如下代码:
//修改LOGO链接
function custom_loginlogo_url($url) {
return'https://www.zsxxfx.com/'; //在此输入你需要链接到的URL地址
}
add_filter( 'login_headerurl', 'custom_loginlogo_url');
function custom_register_url($url) {
return'https://www.zsxxfx.com/'; //在此输入你需要链接到的URL地址
}
add_filter( 'login_registerurl', 'custom_register_url');
链接修改为你自己的就可以了。
页:
[1]