最近偶然发现,别人家的文章页有显示百度是否收录的信息,随即找了下代码来折腾,但是已收录状态下点击进入百度却是文章标题,我想要直接显示文章链接,无奈自己不懂代码又瞎折腾了。终于成功了。
- 代码部署如下
一、将以下代码添加至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_permalink().'"><font color="#ff0000">百度已收录</font></a>'; } else { echo '<a style="color:#c40000; rel="external nofollow" title="提交链接" target="_blank" href="http://zhanzhang.baidu.com/sitesubmit/index?sitename='.get_permalink().'"><font color="#ff0000">百度未收录</font></a>'; } }
二、以下代码添加至自己主题页面文件适当位置
<center><?php baidu_record(); ?></center>
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
喜欢就支持以下吧