网站的搜索引擎收录情况是站长最为关心的,特别是国内引擎巨头百度,可是不知百度在本站准确收录情况,站长们可能都很懊恼。用些方法,可以判断当前文章是否被百度收录,从而实现批量检查页面是否被百度收录的功能,若没有被收录则可点击提交至百度,加速收录!(提交字样仅管理员可见)
找到wordpress文件夹下的“wp-includes”文件夹下的“functions.php”在functions.php文件最底下增加代码,然后保存即可。
/*
Plugin Name: Baidu-Accept
Plugin URI:https://www.cwhello.com
Description: 判断当前文章是否被百度收录
*/
function d4v($url){
$url='http://www.baidu.com/s?wd='.$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 0;
}
}
add_filter( 'the_content', 'baidu_submit' );
function baidu_submit( $content ) {
if( is_single() && current_user_can( 'manage_options') )
if(d4v(get_permalink()) == 1)
$content="<p align=right>百度已收录(仅管理员可见)</p>".$content;
else
$content="<p align=right><b><a style=color:red target=_blank href=http://zhanzhang.baidu.com/sitesubmit/index?sitename=".get_permalink().">百度未收录!点击此处提交</a></b>(仅管理员可见)</p>".$content;
return $content;
}
本文来自投稿,不代表重蔚自留地立场,如若转载,请注明出处https://www.cwhello.com/3320.html
如有侵犯您的合法权益请发邮件951076433@qq.com联系删除