先看效果,如果你需要百度主動(dòng)推送,請(qǐng)點(diǎn)擊織夢(mèng)dedecms5.7百度主動(dòng)推送(實(shí)時(shí))
打開(kāi)你的熊掌號(hào)管理后臺(tái)。記住你的熊掌號(hào)接口調(diào)用地址
第一步,打開(kāi)你的網(wǎng)站后臺(tái)-系統(tǒng)-基本參數(shù),添加新變量,如下圖,在你的變量值里面添加熊掌號(hào)接口調(diào)用地址
變量名稱:cfg_xiong_push
變量值:(填寫(xiě)您的熊掌號(hào)接口調(diào)用地址)
變量類(lèi)型:文本
參數(shù)說(shuō)明:熊掌號(hào)推送接口
第二步,打開(kāi) /dede/inc/inc_archives_functions.php 在文件最后插入下面代碼:
/**
* 熊掌主動(dòng)推送
*/
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 '熊掌主動(dòng)推送失敗,錯(cuò)誤碼:'.$result['error'].' message:'.$result['message'];
}else{
$not_same_site = isset($result['not_same_site'][0]) ? " <font style='color:#f00;'>推送鏈接與熊掌綁定站點(diǎn)不一致</font> " : "";
$not_valid = isset($result['not_valid'][0]) ? " <font style='color:#f00;'>推送鏈接不合法</font> " : "";
return $not_same_site . $not_valid . '熊掌主動(dòng)推送成功 '.$result['success_batch'].' 條!當(dāng)天剩余 '.$result['remain_batch'].' 條可推送!'.$artlist;
}
}
return "沒(méi)有數(shù)據(jù)被推送!";
}
}
打開(kāi)/dede/article_add.php,搜索
//返回成功信息
在它上面添加
if(!empty($cfg_xiong_push))
{
$backurl .= "<p> ".xiong_push($arcID)."</p>";
}
繼續(xù)搜索
line-height:36px;height:36px
替換成
line-height:36px;
如果在這之前你添加過(guò)百度主動(dòng)推送,刪除樣式這一步可忽略。
]]>