Questions tagged «google-rich-snippets-tool»


2
Google结构化数据测试工具上的BlogPosting Publisher徽标“ logo.itemtype具有无效值”
预期会通过Google结构化数据测试工具执行以下操作: <div> <div itemprop="publisher" itemscope id="organization-example" itemtype="https://schema.org/Organization"> <a itemprop="url" href="https://example.com"> <img itemprop="image logo" src="https://example.com/images/logo.png" alt="LOGO"> <span itemprop="name">EXAMPLE</span> <span itemprop="description">This is an EXAMPLE</span> </a> </div> </div> <div itemscope itemtype="https://schema.org/WebPage" itemref="organization-example"> </div> 但是当我尝试使用a时BlogPosting会破坏logo属性: <div> <div itemprop="publisher" itemscope id="organization-example" itemtype="https://schema.org/Organization"> <a itemprop="url" href="https://example.com"> <img itemprop="image logo" src="https://example.com/images/logo.png" alt="LOGO"> <span itemprop="name">EXAMPLE</span> <span itemprop="description">This is …

2
文章结构化数据所需的新的mainEntityOfPage
我看了Google提出的文章“结构化数据”,发现有一个新的必填和推荐字段,上周没有。链接在这里: https://developers.google.com/structured-data/rich-snippets/articles 列表中的第一个属性是: mainEntityOfPage。@ id(推荐) 我不知道该物业的价值必须是什么?这是什么性质?它是链接到: http://schema.org/Article ..或指向当前博客文章的链接,例如: http://www.example.com/blog/1001/my-blog-article 他们的示例代码中包含以下内容: <meta itemscope itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage" itemid="https://google.com/article" /> 我目前所拥有的这还不符合测试工具的规则-我仍在忙于添加所有必需的属性,同时尝试在其中添加推荐的属性: <div itemscope itemtype="http://schema.org/BlogPosting"> <h1 itemprop="headline"> <a href="http:///www.example.com/blog/1001/my-blog-article" itemprop="url">My Blog Article</a> </h1> <p>Written by <span itemprop="author" itemscope itemtype="http://schema.org/Person"> <span itemprop="name">Mase Kind</span> </span> on <time itemprop="datePublished" datetime="2015-11-16T15:30:00+02:00">November 16, 2015</time> <meta itemprop="dateModified" content="2015-12-10T12:29:00+02:00" /> <div itemprop="publisher" …

4
使用Schema.org丰富摘要的面包屑
我在实现来自schema.org的面包屑丰富的摘要时遇到问题。当我使用文档构建面包屑并通过Google Rich Snippet测试工具运行时,该面包屑已被识别,但未在预览中显示。 <!DOCTYPE html> <html> <head> <title>My Test Page</title> </head> <body itemscope itemtype="http://schema.org/WebPage"> <strong>You are here: </strong> <div itemprop="breadcrumb"> <a title="Home" href="/">Home</a> > <a title="Test Pages" href="/Test-Pages/">Test Pages</a> > </div> </body> </html> 如果我更改为使用data-vocabulary.org中的代码段,则丰富的代码段将在预览中正确显示。 <!DOCTYPE html> <html> <head> <title>My Test Page</title> </head> <body> <strong>You are here: </strong> <ol itemprop="breadcrumb"> <li …

2
为什么我的itemprop ='image'标记不正确?
我一直在尝试微数据,并认为可以在我的博客上尝试。原来我使用的模板已经添加了一些标记。那不是很好,所以我固定了我能做的。 为了提高运气,我在最新文章中添加了更多标记,但是Google的结构化数据测试工具(SDTT)对itemprop='image'属性不满意,我不确定为什么。 结果页。 根据我的理解,我忽略了两者之间的所有代码,因此对数据进行了结构化: <div itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <div itemprop='articleBody'> <a href="1.png" itemprop="url"><img itemprop="image sharedContent" src="1.png" /></a> <a href="2.png" itemprop="url"><img itemprop="image sharedContent" src="2.png" /></a> <a href="3.png" itemprop="url"><img itemprop="image sharedContent" src="3.png" /></a> </div> </div> 在我看来,这是正确的。 BlogPosting可以具有属性,articleBody并image根据https://schema.org/BlogPosting进行操作,但根据SDTT: 属性itemtype的值无效。 确实,我刚刚使用上面的示例代码尝试了SDTT,但它未能通过验证。 因此,我显然缺少了一些东西。我究竟做错了什么?

2
Open Graph打破结构化数据测试工具
我在页面上添加了一些元开放图(Twitter,Facebook),但是在结构化数据测试工具中它破坏了我的面包屑结构化数据。 我不知道http://ogp.me/ *来自哪里。这是页面的源代码。页面本身。SDTT中的页面 如果我仅在SDTT中检查面包屑代码,则它是有效的。 <meta property="og:title" content="Dema CORSA 9.0 green-white 540 mm" /> <meta property="og:type" content="website" /> <meta property="og:site_name" content="mihalko.eu" /> <meta property="og:image" content="http://mihalko.eu/image/data/dema-ktlg/B15020.jpg" /> <meta property="og:url" content="http://mihalko.eu/dema-corsa-90-green-white-540-mm" /> <meta property="fb:admins" content="1158837854" /> <meta property="og:description" content="Popis - Špecifikácia bicykla DEMA CORSA 9.0 Rám "DEMA Road Race Carbon Monocoque, Di2" Tlmič …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.