本文最后更新于 927 天前,文中的信息可能已经有所变化。如有误,请留言反馈。
微软必应(英文名:Bing)是微软公司于2009年5月28日推出,用以取代Live Search的全新搜索引擎服务。为符合中国用户使用习惯,Bing中文品牌名为“必应”。
必应美图,每天自动更新,将大自然的鬼斧神工定格在一刻。
如何将必应美图设置为WordPress的后台登陆背景?
有以下两种方法,任选一种即可:
- 将以下代码放入主题的Functions.php文件?>标签前,1366*768 分辨率:
//调用bing美图作为登录页背景图 function custom_login_head(){ $str=file_get_contents('http://cn.bing.com/HPImageArchive.aspx?idx=0&n=1'); if(preg_match("/<url>(.+?)<\/url>/ies",$str,$matches)){ $imgurl='http://cn.bing.com'.$matches[1]; echo'<style type="text/css">body{background: url('.$imgurl.');width:100%;height:100%;background-image:url('.$imgurl.');-moz-background-size: 100% 100%;-o-background-size: 100% 100%;-webkit-background-size: 100% 100%;background-size: 100% 100%;-moz-border-image: url('.$imgurl.') 0;background-repeat:no-repeat\9;background-image:none\9;}</style>'; }} add_action('login_head', 'custom_login_head');
- 将以下代码放入主题的Functions.php文件?>标签前,1920*1080 分辨率:
//调用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>'; //这里我对background图片的样式进行了调整 //方便小分辨率屏幕(如手机)显示图片正常,否则会被压缩 } add_action('login_head', 'custom_login_head');