前言

我的博客是使用Typecho程序搭建的用的是主题是handsome,若是您使用的程序与博客与我不同请自行修改
1、在目录 /usr/themes/handsome/functions.php 文件 尾部增加

//判断内容页是否百度收录

function baidu_record() {
$url='http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; 

if(checkBaidu($url)==1)
{echo "百度已收录";
}
else
{echo "<a style=\"color:red;\" 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; 
    } 
}

2、post.php 在46行添加

<!--百度收录-->
<li class="meta-categories"><i class="pull-right text-muted" aria-hidden="true"></i> <span class="baidu-record"><?php echo baidu_record() ?></span></li>

最后刷新你就可以在文章里看到是否被百度收录的情况

最后修改:2019 年 02 月 18 日
如果觉得我的文章对你有用,请随意赞赏