<?php
//问站问答
include ( "wp-config.php" ) ;
require_once (ABSPATH.'wp-blog-header.php');
global $wpdb;
$qianzui = "https://www.wenzhan.cc/"; //更改为自己的域名
$houzui = ".html";//URL网址链接后缀
$sql="SELECT ID FROM wp_posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY ID DESC limit 0,195";
$myrows = $wpdb->get_results($sql);
foreach ($myrows as $b) {
$id=$b->ID;
$url=$qianzui.$id.$houzui;
$ar[] = $url;
}
$urls = array(
'https://www.wenzhan.cc/tools/checkATS.html',
'https://www.wenzhan.cc/tools/ipinfo.html',
'https://www.wenzhan.cc/tools/qrcode.html',
'https://www.wenzhan.cc/tools/pic.html',
'https://www.wenzhan.cc/links_1-html',
);
$num=array_merge_recursive($urls,$ar);
$chunk_result = array_chunk($num, 20);
foreach ($chunk_result as $a){
$api = 'http://data.zz.baidu.com/urls?site=https://www.wenzhan.cc&token=*****'; //这里要替换为自己在百度官方的api地址,如何获取文章有介绍
$ch = curl_init();
$options = array(
CURLOPT_URL => $api,
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => implode("\n", $a),
CURLOPT_HTTPHEADER => array('Content-Type: text/plain'),
);
curl_setopt_array($ch, $options);
$result = curl_exec($ch);
echo $result;
}
?>
将上述代码保存命名为push.php,上传到网站根目录,然后就可以直接访问http://xxx.xxx.com/push.php这个页面来推送给百度蜘蛛了,可以每隔几天访问一次。
参数说明:
1、$sql语句中,limit 0,195这里是提取最近195篇文章,可以根据自己需要调整。
2、$houzui 网址后缀,有些站长可能没有用.html这种方式,比如是https://www.xxx.com/1437/这种链接,那么$url=$qianzui.$id.$houzui这段就要修改为$url=$qianzui.$id
3、$urls变量是自定义需要提取的链接地址,可以根据自己需要添加,如果不需要可以删除这部分代码,删除以后后面$chunk_result = array_chunk($num, 20);就需要修改为$chunk_result = array_chunk($ar, 20);
百度蜘蛛主动推送的api获取方式如下图:
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!