找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 13130|回复: 0

[分享] 织梦DedeCMS发布文章后主动推送给百度(实时推送)

[复制链接]
发表于 2019-8-4 14:51:25 | 显示全部楼层 |阅读模式 来自 河南省新乡市
织梦DEDECMS发布文章后如何添加百度主动推送功能,下面来看看吧,so easy~

后台系统参数新建字段

cfg_bdtoken:百度接口
cfg_bdhost:推送域名
1.png 2.png 3.png

修改相关PHP文件
打开/dede/article_add.php

找到

  1. $artUrl = MakeArt($arcID,true,true,$isremote);
  2. if($artUrl=='')
  3. {
  4.   $artUrl = $cfg_phpurl."/view.php?aid=$arcID";
  5. }
复制代码

在下面加入

  1. else{
  2. $urls[]='http://'.$cfg_bdhost.''.$artUrl;  //如果网站开启了SSL,请把http改成https
  3. $api = $cfg_bdtoken;
  4. $ch = curl_init();
  5. $options =  array(
  6.     CURLOPT_URL => $api,
  7.     CURLOPT_POST => true,
  8.     CURLOPT_RETURNTRANSFER => true,
  9.     CURLOPT_POSTFIELDS => implode("\n", $urls),
  10.     CURLOPT_HTTPHEADER => array('Content-Type: text/plain'),
  11. );
  12. curl_setopt_array($ch, $options);
  13. $result = curl_exec($ch);
  14. }
复制代码

继续找到

  1. <a href='catalog_do.php?cid=$typeid&dopost=listArchives'><u>已发布文章管理</u></a>
复制代码

在下面加入

  1. <a href=''><u>百度提交返回".$result."</u></a>  
  2. &nbsp;&nbsp;
复制代码

保存。

继续操作,打开/dede/article_edit.php
找到

  1. $artUrl = MakeArt($id,true,true,$isremote);
  2.    if($artUrl=='')
  3.    {
  4.        $artUrl = $cfg_phpurl."/view.php?aid=$id";
  5.    }
复制代码

在下面加入

  1. else{
  2. $urls[]='http://'.$cfg_bdhost.''.$artUrl;  //如果网站开启了SSL,请把http改成https
  3. $api = $cfg_bdtoken;
  4. $ch = curl_init();
  5. $options =  array(
  6.     CURLOPT_URL => $api,
  7.     CURLOPT_POST => true,
  8.     CURLOPT_RETURNTRANSFER => true,
  9.     CURLOPT_POSTFIELDS => implode("\n", $urls),
  10.     CURLOPT_HTTPHEADER => array('Content-Type: text/plain'),
  11. );
  12. curl_setopt_array($ch, $options);
  13. $result = curl_exec($ch);
  14. }
复制代码

继续找到

  1. <a href='catalog_do.php?cid=$typeid&dopost=listArchives'><u>管理文章</u></a>
复制代码

在下面加入

  1. <a href=''><u>百度提交返回".$result."</u></a>  
  2. &nbsp;&nbsp;
复制代码

完成,发布文章和更新文章都实现百度主动推送了。

功能测试

4.png
如上图则推送成功。

发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;

如何回报帮助你解决问题的坛友,好办法就是点击帖子下方的评分按钮给对方加【金币】不会扣除自己的积分,做一个热心并受欢迎的人!

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则 需要先绑定手机号

关闭

站长推荐上一条 /1 下一条

QQ|侵权投诉|广告报价|手机版|小黑屋|西部数码代理|飘仙建站论坛 ( 豫ICP备2022021143号-1 )

GMT+8, 2024-4-20 12:17 , Processed in 0.039457 second(s), 7 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表