织梦DEDECMS熊掌号周级收录接口推送

织梦DEDECMS熊掌号周级收录接口推送,通过周级收录接口,每天可提交最多500万条有价值的内容,所提交内容会进入百度搜索统一处理流程,这个过程需要一段时间,请耐心等待。

先看效果,如果你需要百度主动推送,请点击织梦dedecms5.7百度主动推送(实时)

打开你的熊掌号管理后台。记住你的熊掌号接口调用地址

第一步,打开你的网站后台-系统-基本参数,添加新变量,如下图,在你的变量值里面添加熊掌号接口调用地址

变量名称:cfg_xiong_push

变量值:(填写您的熊掌号接口调用地址)

变量类型:文本

参数说明:熊掌号推送接口

 

第二步,打开 /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 "没有数据被推送!";
	}
}

打开/dede/article_add.php,搜索

//返回成功信息

在它上面添加

if(!empty($cfg_xiong_push))
{
	$backurl .= "<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;".xiong_push($arcID)."</p>";
}

继续搜索

line-height:36px;height:36px

替换成

line-height:36px;

如果在这之前你添加过百度主动推送,删除样式这一步可忽略。

THE END