欢迎光临
我们一直在努力

WordPress如何更换后台登陆页面的背景图片

WordPress 更换后台登陆页面的背景图片教程:

把以下代码复制到当前主题functions.php的文件中:

 

//调用bing美图作为登录页背景图
function custom_login_head(){
    $str=file_get_contents('http://cn.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1');
    if (preg_match("/\/(.+?).jpg/", $str, $matches)) {
        $imgurl='http://s.cn.bing.net'.$matches[0];
    }
    echo'<style type="text/css">body{background: url('.$imgurl.');background-image:url('.$imgurl.');-moz-border-image: url('.$imgurl.');}</style>';
}
add_action('login_head', 'custom_login_head');

 

图片会每日自动更新,手动想更新图片的话,可以修改代码中?idx=0?的参数?0?为其他数字即可;

赞(0) 打赏
未经允许不得转载:新起点博客 » WordPress如何更换后台登陆页面的背景图片

评论 抢沙发

评论前必须登录!