网站被搜索引擎收录是站长最为关心的,特别是国内引擎巨头百度,可是不知百度在本站准确收录情况,站长们可能都很懊恼自己网站是否收录,尤其是国内最大的搜索引擎百度,每天用站长工具和site反复的查询,现在不用再忧愁啦!由网友第四维开发了一款wordpress插件baidu accept,可检测文章页面是否被百度收录。
现在你可以放心了!
查看百度是否已收录文章页面—wordpress插件(baidu accept)诞生了!
插件特点:判断当前文章是否被百度收录,若没有被收录则可点击提交至百度,加速收录!(此插件在文章页面仅管理员可见)
如果不想使用插件的童鞋,可以使用如下代码实现此功能,复制下面的代码添加到当前主题的 functions.php 即可:
/*
Plugin Name: Baidu-Accept
Plugin URI: http://www.d4v.com.cn
Description: 判断当前文章是否被百度收录,若没有被收录则可点击提交至百度,加速收录!(此插件在文章页面仅管理员可见)
Version: 1.0
Author: Jovae
Author URI: http://www.d4v.com.cn
License: GPL
*/
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;
}插件下载地址:baidu-accept.zip