评论

收藏

[织梦CMS] 织梦dedecms熊掌号落地页改造教程

建站程序 建站程序 发布于:2021-07-29 17:14 | 阅读数:440 | 评论:0

织梦落地页熊掌号改造,改造前需要了解自己的织梦网站模板是自适应还是单独的手机模板,熊掌号落地页面要求是移动页面,所以如果我们改造页面在PC页面上是不行的。所以根据我们的实际情况,进行落地页面的改造。
DSC0000.jpg

找到落地页面的模板文件,也就是织梦程序的内容模板,根据以下内容选择相应的地方添加。
head标签内添加
<script src="https://msite.baidu.com/sdk/c.js?appid=自己熊掌号ID"></script>
<link rel="canonical" href="{dede:field.id runphp='yes'}$id=@me;@me='';$url=GetOneArchive($id);@me=$url['arcurl'];{/dede:field.id}"/>  //调用PC页面链接
body标签内添加内容
<script type="application/ld+json"> 
{ 
"@context": "https://zhanzhang.baidu.com/contexts/cambrian.jsonld", 
"@id": "http://www.自己网站域名.com/m/view.php?aid={dede:field.id/}", 
"title": "{dede:field.title/}", 
"images": [ 
"{dede:field.litpic/}" ], 
 
"description": "{dede:field.description function='cn_substr(@me,600)' /}", 
"pubDate": "{dede:field.pubdate function="MyDate('Y-m-d',@me)"/}T{dede:field.pubdate function="MyDate('H:i:s',@me)"/}" 
} 
</script>
如果我们网站内容需要调用三图,可以替换掉上面的图片调用标签,三图展现相较于单图展现点击率要大的多。
"images":[{dede:field.bodyrunphp='yes'}$str=strip_tags("@me","<img>");preg_match_all("/src="/?(.*?)"/",$str,$ereg);@me="";$urlarr=$ereg[1];if (count($urlarr)>=3){@me='"'.$urlarr[0].'","'.$urlarr[1].'","'.$urlarr[2].'"';}else{@me='"'.$urlarr[0].'"';}{/dede:field.body}],
如果有其他问题我们在验证页面时,会指出我们的错误,根据百度提供的在线校验常见错误类型帮助文档进行排查。

关注下面的标签,发现更多相似文章