百度熊掌号是内容和服务提供者入驻百度生态的认证账号,致力于帮助内容和服务提供者便捷、高效地连接全网用户,并充分利用百度生态开放的优势,获取流量、沉淀用户、塑造品牌,实现自身价值的快速增长。接入熊掌号需要改造页面使之符合熊掌号的规范。
1、添加canonical标签文章源自SEO视频网-https://www.seoshipin.cn/gongju/2791.html
在H5页面<head>部分添加:文章源自SEO视频网-https://www.seoshipin.cn/gongju/2791.html
- <link rel="canonical" href="这里是H5对应的PC页面地址"/>
要求href的内容为MIP页或H5页对应的PC页地址;如果没有PC页,则填写当前页面地址。文章源自SEO视频网-https://www.seoshipin.cn/gongju/2791.html
然后是添加JSON_LD数据,示例:文章源自SEO视频网-https://www.seoshipin.cn/gongju/2791.html
- <script type="application/ld+json">
- {
- "@context": "https://ziyuan.baidu.com/contexts/cambrian.jsonld",
- "@id": "{dede:global.cfg_basehost/}{dede:field.arcurl/}",
- "appid": "这里是你的熊掌ID",
- "title": "{dede:field.title/}",
- "images": [
- "{dede:global.cfg_basehost/}{dede:field.litpic/}"
- ],
- "description": "{dede:field.description/}",
- "pubDate": "{dede:field.pubdate function="MyDate('Y-m-d',@me)"/}T{dede:field.pubdate function="MyDate('H:i:s',@me)"/}"
- }
- </script>
- <script src="//msite.baidu.com/sdk/c.js?appid=这里是你的熊掌ID"></script>
说明:
@context: 必选字段, 请保留
@id: 必选字段, 当前网页的url
appid: 必选字段, 熊掌号ID
title: 必选字段, 标题,建议长度:20个字符以内
images: 可选字段, 搜索结果结构化信息展示,仅允许提供0张,1张图或3张图
description: 可选字段, 内容摘要:120个字符以内
pubDate: 必选字段, 内容发布时间,格式是(2017-06-15T08:00:01)文章源自SEO视频网-https://www.seoshipin.cn/gongju/2791.html
{dede:global.cfg_basehost/}{dede:field.arcurl/}获取的是当前文章页的URL文章源自SEO视频网-https://www.seoshipin.cn/gongju/2791.html
{dede:global.cfg_basehost/}{dede:field.litpic/} 获取图片文章源自SEO视频网-https://www.seoshipin.cn/gongju/2791.html
{dede:field.description/} 获取描述文章源自SEO视频网-https://www.seoshipin.cn/gongju/2791.html
{dede:field.pubdate function="MyDate('Y-m-d',@me)"/}T{dede:field.pubdate function="MyDate('H:i:s',@me)"/} 获取时间文章源自SEO视频网-https://www.seoshipin.cn/gongju/2791.html
相关文章:文章源自SEO视频网-https://www.seoshipin.cn/gongju/2791.html
评论