属性property=“og:title”是什么?在元标记内?
我有以下网站源代码摘录:
<meta content="This is a basic text" property="og:title" />
这个属性属性代表什么,它的用途是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有以下网站源代码摘录:
<meta content="This is a basic text" property="og:title" />
这个属性属性代表什么,它的用途是什么?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
og:title
是开放图元标签之一。 og:... 属性定义社交图中的对象。例如,Facebook 使用它们。og:title
代表对象的标题,因为它应该出现在图表中(请参阅此处了解更多信息 http ://ogp.me/)og:title
is one of the open graph meta tags.og:...
properties define objects in a social graph. They are used for example by Facebook.og:title
stands for the title of your object as it should appear within the graph (see here for more http://ogp.me/ )元标记中的
property
允许您指定来自属性库的属性字段的值。属性库(RDFa 格式)在 head 标签中指定。例如,要使用该代码,您必须在
标记中包含类似的内容。
并且在
http://example.org/
中有一个规范标题
(og:标题)。您的示例中的标签几乎肯定来自 开放图协议,目的是为您的网站指定结构化信息使用 Facebook(可能还有其他搜索引擎)。
The
property
in meta tags allows you to specify values to property fields which come from a property library. The property library (RDFa format) is specified in the head tag.For example, to use that code you would have to have something like this in your
<head
tag.<head xmlns:og="http://example.org/">
and inside thehttp://example.org/
there would be a specification fortitle
(og:title).The tag from your example was almost definitely from the Open Graph Protocol, the purpose is to specify structured information about your website for the use of Facebook (and possibly other search engines).
当页面被共享(或喜欢等)时,可以对信息如何从第三方网站传输到Facebook进行一定程度的控制。为了实现这一点,信息通过网站代码的
部分中的 Open Graph 元标记发送。
A degree of control is possible over how information travels from a third-party website to Facebook when a page is shared (or liked, etc.). In order to make this possible, information is sent via Open Graph meta tags in the
<head>
part of the website’s code.一张图片胜过一千个单词,因此这里是 Telegram 中显示的 StackOverflow 的 og: 信息:
简而言之,它增强了 URL 的显示/交互方式在应用程序,使它们更丰富、更漂亮。
请参阅开放图谱协议了解更多信息。
A picture is worth a thousand words, so here is StackOverflow's
og:
info as displayed in Telegram:In a nutshell, it augments how URLs are displayed / can be interacted with in apps, making them richer and prettier.
See The Open Graph protocol for more information.
可能是 Open Graph Protocol
for Facebook的一部分。编辑:猜猜不仅仅是 Facebook——这只是使用它的一个例子。
Probably part of Open Graph Protocol
for Facebook.Edit: guess not only Facebook - that's only one example of using it.