后臺(tái)系統(tǒng)參數(shù)新建字段
cfg_bdtoken:百度接口
cfg_bdhost:推送域名
修改相關(guān)PHP文件
打開/dede/article_add.php
找到
$artUrl = MakeArt($arcID,true,true,$isremote);
if($artUrl=='')
{
$artUrl = $cfg_phpurl."/view.php?aid=$arcID";
}
在下面加入
else{
$urls[]='http://'.$cfg_bdhost.''.$artUrl;//如果網(wǎng)站開啟了SSL,請(qǐng)把http改成https
$api = $cfg_bdtoken;
$ch = curl_init();
$options =array(
CURLOPT_URL => $api,
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => implode(" ", $urls),
CURLOPT_HTTPHEADER => array('Content-Type: text/plain'),
);
curl_setopt_array($ch, $options);
$result = curl_exec($ch);
}
繼續(xù)找到
<a href='catalog_do.php?cid=$typeid&dopost=listArchives'><u>已發(fā)布文章管理</u></a>
在下面加入
<a href=''><u>百度提交返回".$result."</u></a>
保存。繼續(xù)操作,打開/dede/article_edit.php
找到
$artUrl = MakeArt($id,true,true,$isremote);
if($artUrl=='')
{
$artUrl = $cfg_phpurl."/view.php?aid=$id";
}
在下面加入
else{
$urls[]='http://'.$cfg_bdhost.''.$artUrl;//如果網(wǎng)站開啟了SSL,請(qǐng)把http改成https
$api = $cfg_bdtoken;
$ch = curl_init();
$options =array(
CURLOPT_URL => $api,
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => implode(" ", $urls),
CURLOPT_HTTPHEADER => array('Content-Type: text/plain'),
);
curl_setopt_array($ch, $options);
$result = curl_exec($ch);
}
繼續(xù)找到
<a href='catalog_do.php?cid=$typeid&dopost=listArchives'><u>管理文章</u></a>
在下面加入
<a href=''><u>百度提交返回".$result."</u></a>
完成,發(fā)布文章和更新文章都實(shí)現(xiàn)百度主動(dòng)推送了。
相關(guān)文章: