方法一 :仅管理员可见的百度是否已收录此文章
编辑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().'"><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().'"><i class="fa fa-paw fa-lx"></i>百度未收录</a>';
- }
- }
再编辑文章模板(一般是single.php),在合适的位置添加如下代码并保存:
- <?php baidu_record(); ?>
方法三 : 安装插件实现
wp-baidu-record:这个插件能够很方便地在首页/目录列表页/文章页默认/指定位置显示该篇文章的百度收录状态,以方便博主站长们对未被收录的文章进行调整。
baidu accept:该插件需要开启PHP的cURL扩展,否则无法正常使用。
下载地址:
评论