bing美图作为WordPress登录页面的背景图

37次阅读
没有评论

共计 1144 个字符,预计需要花费 3 分钟才能阅读完成。

在还是很简单的直接加上一段代码就可以了,注意加到主题文件的 function 这个里面就可以了。
// 自定义登录页面背景
function custom_login_head(){
$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];
echo'

';
}}
add_action('login_head', 'custom_login_head');
add_filter('login_headerurl', create_function(false,"return get_bloginfo('url');"));
add_filter('login_headertitle', create_function(false,"return get_bloginfo('name');"));
别人那里发现的,本人现在用的这段代码还是很好的。很好看,

正文完
 0
yx
版权声明:本站原创文章,由 yx 于2015-06-04发表,共计1144字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)
验证码