你是否在担心百度或谷歌收录哪个文章而苦恼,亦或者每次都要site:站点,或者直接搜索链接查询是否已经收录了页面。
现在你已经不用在苦苦的这样了,因为typecho也可以实现判断代码,感谢VirCloud等人提供的代码。
因为我将代码放到了文章的头部位置,所以显示在这里,下面我就来分享实现代码。
1.在主题的functions.php文件里新增下面一段代码:修改前可以先做个备份。
//判断文章是否被百度收录
function baidu_record() {
$url='http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
if(checkBaidu($url)==1)
{echo "百度已收录";
}
else
{echo "<a style=\"color:--highlight-fade-color;\" rel=\"external nofollow\" title=\"点击提交收录!\" target=\"_blank\" href=\"http://zhanzhang.baidu.com/sitesubmit/index?sitename=$url\">百度未收录</a>";}
}
function checkBaidu($url) {
$url = 'http://www.baidu.com/s?wd=' . urlencode($url);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$rs = curl_exec($curl);
curl_close($curl);
if (!strpos($rs, '没有找到')) { //没有找到说明已被百度收录
return 1;
} else {
return -1;
}
}
//判断文章是否被谷歌收录
function google_record() {
$url='https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
if(checkGoogle($url)==1)
{echo "谷歌已收录";
}
else
{echo "<span style=\"color:--highlight-fade-color;\">谷歌未收录</span>";}
}
function checkGoogle($url) {
$url = 'http://www.google.com/search?q="' . urlencode($url).'"';
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$rs = curl_exec($curl);
curl_close($curl);
if (!strpos($rs, 'No results') && !strpos($rs, 'Your search')) { //没有结果说明已被谷歌收录
return 1;
} else {
return -1;
}
}
2.在主题post或者page页面中在想要展示的位置添加下面的代码进行调用(我是在文章标题下进行调用的,你们可以根据自己需要进行调用):
<i class="fa fa-search"></i>
<span>百度收录:<?php echo baidu_record() ?></span>
<i class="fa fa-google"></i>
<span>谷歌收录:<?php echo google_record() ?></span>
我在两个页面都进行调用了,所以文章和独立页面都能显示,可以根据具体情况调整下css样式,美化css效果。
最后最后感谢各位大佬提供的代码,网上搜索挺多的,最感谢的当然是昨天搜索文章看到VirCloud大佬的代码。
本文链接:https://my.lmcjl.com/post/1608.html
展开阅读全文
4 评论