在你博客文章状态栏后面展示“百度已收录”,当然这个不是随便写上去的,你的文章真的已经被百度收录,通过插件或者代码展示在文章上面,作为 seo 你可以直观的来了解你的文章的收录情况。
第一个方法是安装插件 WP-Baidu-Record,通过 wordpress 后台搜索并安装,激活插件点击设置,也可以自定义输出的位置,主题编辑里找到文章模板 single.php,在你想要的位置添加函数<?php echo baidu_record(); ?>
如果担心过多的插件影响网站的速度,也可以使用代码的方式来达到这样的效果,编辑 functions.php 在最后一个?>前添加下面这段代码
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 target="_blank" title="点击查看" rel="external nofollow" href="http://www.baidu.com/s?wd='.get_the_title().'">百度已收录</a>'; } else { echo '<a style="color:red;" rel="external nofollow" title="点击提交,谢谢您!" target="_blank" href="http://zhanzhang.baidu.com/sitesubmit/index?sitename='.get_permalink().'">百度未收录</a>'; } }
然后再编辑 single.php 插入<?php echo baidu_record(); ?>即可