WordPress 更改登陆界面图标 ,每次登陆自己网站WordPress后台的时候看到的都是如下图标:
强迫症的我每次看到别人的图标都很不爽,于是决定改成自己的图标(图标尺寸: 100X100 )
打开你主题目录下的functions.php文件,在最后加入以下代码:
(需要先做好自己Logo无背景的png格式图片上传并记录图片链接,以下图片链接和大小要更改成跟自己的Logo对应的)
/**
* 更改登陆界面Wordpress图标
*/
add_filter('login_headerurl', create_function(false,"return get_bloginfo('siteurl');"));
add_filter('login_headertitle', create_function(false,"return get_bloginfo('description');"));
function nowspark_login_head() {
echo '<style type="text/css">body.login #login h1 a {background:url(https://xxx.xxx/wp-content/uploads/2020/01/login_logo-.png) no-repeat 0 0 transparent;height: 250px;width: 250px;padding:0;margin:0 auto 1em;}</style>';
}
add_action('login_head', 'nowspark_login_head');//modify the background image
其实这样也不错