下吧资源网_专注精品网站源码下载的网站_免费商业源码分享

WordPress自动检测并显示文章是否被百度收录

打开自己正在使用的主题的文件目录(/wp-content/themes/主题名),找到functiоns.php。编辑functiоns.php,在底部加入下面的代码:

/* 检查百度是否已收录文章页面 开始*/ functiоn baidu_check($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; } }functiоn baidu_record() {if(baidu_check(get_permalink()) == 1) {echo \'<a target=\"_blank\" title=\"点击查看\" rel=\"external nofollow\" href=\"https://www.baidu.com/s?wd=\'.get_the_title().\'\">百度已收录</a>\'; } else {echo \'<a style=\"color:red;\" rel=\"external nofollow\" title=\"一键帮忙提交给百度,谢谢您!\" target=\"_blank\" href=\"https://zhanzhang.baidu.com/sitesubmit/index?sitename=\'.get_permalink().\'\">百度未收录</a>\'; } }

调用方法:

<?php baidu_record();?>

添加到你想要显示的位置!上面的代码添加完成后,将插入到需要显示收录提示的地方,一般文章模板是single.php,页面模板是page.php。添加好后刷新页面,收录提示能够正常显示就说明ok了。

本文链接:https://www.xiaba.cc/html/2120.html

版权声明:站内所有文章皆来自网络转载,只供模板演示使用,并无任何其它意义!

发表评论 共有 0 条评论)

联系客服
网站客服 业务合作 Q交流群
123456789
公众号
公众号
公众号
返回顶部