WordPress 调用bing必应今日美图做文章或者登录背景

bing必应今日美图还是很不错的,非常漂亮,又没有水印,家里win10系统的待机背景图也可以,但是一直没找到如何调用出来,谷歌了一下bing必应今日美图可以调用
WordPress 调用bing必应今日美图做文章或者登录背景
将以下代码加入至主题目录 Functions.php 文件最后面?>标签前(如果没有?>标签,则直接加到最后面)保存:

登录后台的代码

//微软每日美图登录后台(开始)
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');
//微软每日美图登录后台(结束)

博客前台的代码

//微软每日美图博客(开始)
function bing_auto_bg()  
{  
    $str=file_get_contents('http://global.bing.com/HPImageArchive.aspx?idx=0&n=1');  
    if(preg_match("/<url>(.+?)<\/url>/ies",$str,$matches))  
    {  
        $imgurl='http://global.bing.com'.$matches[1];  
            echo'<style type="text/css">body{background: url('.$imgurl.');width: 100%; height: 100%; -moz-background-size: cover;-webkit-background-size: cover;background-size: cover; background-position: top center; background-attachment: fixed; }</style>';  
    }  
}  
add_action( 'wp_head', 'bing_auto_bg' );  
//微软每日美图博客(结束)

也可以根据你自己的喜好修改idx=0,前一天的图片等等@

http://cn.bing.com/HPImageArchive.aspx?
http://global.bing.com/HPImageArchive.aspx?
这个随便自己选择,速度感觉差不多!

分享到:
赞(0)