还有其他人有这个问题吗?或者您能看到我这到底有什么问题吗?
问题:如果我去公司(企业或个人)网站并发布指向我网站之一的链接:
我得到图像,但没有标题或描述。这两个站点都将WordPress与最新版本的Yoast SEO配合使用。我问了LinkedIn,他们只是说我需要将meta og标签添加到我的网站上,但是当我查看两个网站上每个页面的源代码时,都可以在其中看到它们。有什么我想念的吗?
这是LinkedIn客户支持所说的:
您需要确保源代码符合Open Graph 协议(OGP)和特定于LinkedIn的某些图像要求。 我们的开发人员网站包含有关设置显示标签的更多详细信息 股票(仅提供英文版本)。以下是og:标记, 必须存在并且其格式正确:
<meta property='og:title' content='Title of the article"/> <meta property='og:image' content='//media.example.com/ 1234567.jpg"/> <meta property='og:description' content='Description that will show in the preview"/> <meta property='og:url' content='//www.example.com/URL of the article" />
以下是特定于LinkedIn共享的图像要求 模块:
Max file size: 5 MB Minimum image dimensions: 1200 (w) x 627 (h) pixels Recommended ratio: 1.91:1
这些是我网站上的OG标签:
<meta property="og:type" content="article" />
<meta property="og:url" content="https://www.revealio.com/features/" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="og:site_name" content="REVEALiO" />
<meta property="og:title" content="How To Make Your Message Come Alive With REVEALiO" />
<meta name="twitter:title" content="How To Make Your Message Come Alive With REVEALiO" />
<meta property="og:image" content="https://www.revealio.com/wp-content/uploads/BC_phone_scan-iPhone-wText-1.jpg" />
<meta name="twitter:image:src" content="https://www.revealio.com/wp-content/uploads/BC_phone_scan-iPhone-wText-1.jpg" />
<meta property="og:description" content="REVEALiO Is a Video Marketing Technology That Makes Your Promotional Materials COME ALIVE With A Personal Video Message and Call To Action Buttons" />
<meta name="twitter:description" content="REVEALiO Is a Video Marketing Technology That Makes Your Promotional Materials COME ALIVE With A Personal Video Message and Call To Action Buttons" />
<meta name="twitter:creator" content="@Revealiocards" />
<meta name="twitter:site" content="@Revealiocards" />
我想念什么吗?
答案 0 :(得分:0)
您的[sum(newlist[i:i+7]) for i in range(0, len(newlist) - 6, 7)] + [sum(newlist[-(len(newlist) % 7):])]
标签没有问题,但是您的title
标签肯定丢失了。 LinkedIn提供了两个级别,每个级别都以自己的方式触发,但是它们是互斥的...
description
标签。og:image
标签,而是og:image
标签。您的网站正在使用1级...
The Official Microsoft LinkedIn Share Documentation没有提到这些级别。但是LinkedIn support staff通知我它们存在,并且实验似乎证实了这一点。
示例:维基百科有og:description
,但缺少og:description
,因此,sharing Wikipedia显示了说明。但是GitHub同时拥有og:image
和og:description
,因此sharing GitHub显示了图像。