本文最后更新于 927 天前,文中的信息可能已经有所变化。如有误,请留言反馈。
wordpress纯代码判断文章是否被收录(另有插件推荐),并显示在指定位置。点击显示出的文字后跳转至提交链接。
代码如下:
将以下代码加入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().'"><font color="#FFA07A">百度已收录</font></a>'; } else { echo '<a style="color:#FFA07A; rel="external nofollow" title="提交链接" target="_blank" href="http://zhanzhang.baidu.com/sitesubmit/index?sitename='.get_permalink().'"><font color="#FFA07A">百度未收录</font></a>'; } }
里面#FFA07A是文字颜色,可调。
将以下代码加入需要显示的位置,(如文章末尾):
<!--百度是否收录--> <sapn><?php baidu_record(); ?></span>
另外,有一款软件也可实现此功能,不过是显示在word press后台编辑文章后面,这样就需要登录后台才能看到。
插件名:百度搜索推送管理
此插件需要2.1.0版本以上才有判断文章是否被收录的功能。