織夢百度熊掌主動推送可以縮短百度爬蟲發(fā)現(xiàn)您站點新鏈接的時間,使新發(fā)布的頁面可以在第一時間被百度收錄,織夢程序我們可以在后臺添加文檔完成那一刻即時主動推送到百度或熊掌,也可以在后臺文檔列表里批量推送
1、織夢網(wǎng)站后臺-系統(tǒng)-基本參數(shù),添加新變量,如果變量值未填寫或者為空將不推送
變量名稱
cfg_xiong_push
參數(shù)說明
熊掌推送接口
變量值
登錄你的百度平臺 https://ziyuan.baidu.com/ydzq/ 獲取接口調(diào)用地址
2、打開 /dede(后臺目錄)/inc/inc_archives_functions.php 在文件最末尾插入
/**
* 熊掌主動推送
*/
function xiong_push($id="",$qstr="")
{
global $cfg_multi_site,$cfg_basehost,$cfg_xiong_push;
if(!empty($id) && !empty($cfg_xiong_push))
{
if( !empty($id) && empty($qstr) ) $qstr = $id;
if($qstr=='')
{
exit();
}
$qstrs = explode('`',$qstr);
$cfg_domain = $cfg_multi_site == 'N' ? $cfg_basehost : '';
$urls = array();
$i = 0;
foreach($qstrs as $aid)
{
$i++;
$arcrow = GetOneArchive($aid);
$url = $cfg_domain.$arcrow['arcurl'];
$urls[] = $url;
$artlist .= $url."<br />";
}
if($i>1) $artlist = "";
if(!empty($urls)){
$ch = curl_init();
$options = array(
CURLOPT_URL => trim($cfg_xiong_push),
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => implode("\n", $urls),
CURLOPT_HTTPHEADER => array('Content-Type: text/plain'),
);
curl_setopt_array($ch, $options);
$result = curl_exec($ch);
curl_close($ch);
$result = json_decode($result, true);
if(isset($result['error'])){
return '熊掌主動推送失敗,錯誤碼:'.$result['error'].' message:'.$result['message'];
}else{
$not_same_site = isset($result['not_same_site'][0]) ? " <font style='color:#f00;'>推送鏈接與熊掌綁定站點不一致</font> " : "";
$not_valid = isset($result['not_valid'][0]) ? " <font style='color:#f00;'>推送鏈接不合法</font> " : "";
return $not_same_site . $not_valid . '熊掌主動推送成功 '.$result['success_batch'].' 條!當天剩余 '.$result['remain_batch'].' 條可推送!'.$artlist;
}
}
return "沒有數(shù)據(jù)被推送!";
}
}
3、找到后臺文檔發(fā)布程序PHP文件
根據(jù)你的需要在對應(yīng)的php文件中找到
//返回成功信息
在它上面加入
if(!empty($cfg_xiong_push))
{
$backurl .= "<p> ".xiong_push($arcID)."</p>";
}
繼續(xù)找到,如果你前面已經(jīng)刪除過height:36px,可以跳過這一步
line-height:36px;height:36px
改成
line-height:36px;
至此,織夢發(fā)布文檔主動推送到熊掌功能完成。
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢百度熊掌主動推送教程