[Web]将BING的桌面作为博客的主题 发表于 2015-03-29 | 分类于 网页 众所周知,Bing的搜索的桌面实在是好看的一笔,现在我们也可以通过PHP的爬虫来实现我们的主页和微软的Bing的图片保持一致。 PHP代码如下:123456789101112131415161718192021222324252627function bavotasan_header_images() {global $post;$post_id = ( is_attachment() && isset( $post->post_parent ) ) ? $post->post_parent : get_queried_object_id();$custom_image = ( is_singular() || get_option( 'page_for_posts' ) == $post_id || is_attachment() ) ? get_post_meta( $post_id, 'arcade_basic_custom_image', true ) : '';$str=file_get_contents('http://cn.bing.com/HPImageArchive.aspx?idx=0&n=1');if(preg_match("/(.+?)<\/url>/ies",$str,$matches)){$imgurl='http://cn.bing.com'.$matches[1];}if ( $custom_image ) {//echo '</pre><img class="header-img" src="' . esc_url( $custom_image ) . '" alt="" /><pre>';echo '</pre><img class="header-img" src="' . $imgurl . '" alt="Bing" /><pre>';} else {if ( $header_image = get_header_image() ) :?><!--<img class="header-img" src="<?//php header_image(); ?>" alt="" />--></pre><img class="header-img" src="<? echo $imgurl?>" alt="" /><pre><!--?php <br ?--> endif;}} 这样就能够使用Bing的桌面了,简直简单粗暴 本文作者: kido zhang 本文链接: https://kidozh.github.io/2015/03/29/web-e5-b0-86bing-e7-9a-84-e6-a1-8c-e9-9d-a2-e4-bd-9c-e4-b8-ba-e5-8d-9a-e5-ae-a2-e7-9a-84-e4-b8-bb-e9-a2-98/ 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 3.0 许可协议。转载请注明出处!