页面显示百度是否包含该功能已经在汇站网测试了一段时间。最初的代码也是从网上找到的,只是自己用,不想分享。毕竟是人家的成就,百度自己也能找到!
但是,由于有朋友问能不能用这个功能分享教程,他决定整理分享一下。
我一直是一个有中度强迫症的完美主义者,所以一般不喜欢第二次分享别人已经分享过的东西!但是我昨晚熬夜到三点。除了在新浪 SAE 设置了一个二维码 API,我还优化了百度收录查询的功能,实现了自定义栏目!
编辑wordpress主题目录下的functions.php文件,在最后一个?>标签前新添如下代码并保存。
/*
判断当前文章是否被百度收录,若没有被收录则可点击提交至百度,加速收录!(此插件在文章页面仅管理员可见)
*/
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;
}
方法二 :纯代码给 WordPress 文章加百度是否已收录功能
同样是在 functions.php 文件下添加如下代码:
//纯代码给 WordPress 文章加百度是否已收录功能
function baidu_check($url){
global $wpdb;
$post_id = ( null === $post_id ) ? get_the_ID() : $post_id;
$baidu_record = get_post_meta($post_id,'baidu_record',true);
if( $baidu_record != 1){
$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,'没有找到')){
if( $baidu_record == 0){
update_post_meta($post_id, 'baidu_record', 1);
} else {
add_post_meta($post_id, 'baidu_record', 1, true);
}
return 1;
} else {
if( $baidu_record == false){
add_post_meta($post_id, 'baidu_record', 0, true);
}
return 0;
}
} else {
return 1;
}
}
function baidu_record() {
if(baidu_check(get_permalink()) == 1) {
echo '<a style="color:green;font-size:12px;float: right;" target="_blank" title="点击查看" rel="external nofollow" href="http://www.baidu.com/s?wd='.get_the_title().'" rel="external nofollow" ><i class="fa fa-paw fa-lx"></i>百度已收录</a>';
} else {
echo '<a style="color:red;font-size:12px;float: right;" rel="external nofollow" title="点击提交,谢谢您!" target="_blank" href="http://zhanzhang.baidu.com/sitesubmit/index?sitename='.get_permalink().'" rel="external nofollow" ><i class="fa fa-paw fa-lx"></i>百度未收录</a>';
}
}
再编辑文章模板(一般是 single.php),在合适的位置添加如下代码并保存:
<?php baidu_record(); ?>
转载请注明:汇站网 » 纯代码为 WordPress 文章增加了百度的收录功能