为了改善我网站的搜索状态,我向其添加了微数据(http://schema.org/Event,http://schema.org/Offer)。但是,自从我这样做以后谷歌再也找不到我的网站,即使谷歌网站管理员说它没有问题和错误。正确读取数据。在我添加微数据之前,当我搜索它时,我的网站位于第三个位置。现在它没有列出相同的关键字。
<div itemscope itemtype="http://schema.org/Event">
<meta itemprop="name" content="IGNITE THE NIGHT - Maturaball des BRG Kepler" />
<meta itemprop="url" content="www.keplerball.at" />
<meta itemprop="location" content="Kammersäle, Graz" />
<meta itemprop="image" content ="http://www.keplerball.at/wp-content/uploads/2014/10/vorschau_cropped_compressed.jpg" />
<b>WER?<br>
<table><tr><td>
MaturantInnen des BRG Kepler
</td></tr></table>
<br>
WANN?<table><tr>
<td>Datum:</td>
<td>Freitag, 28. November</td>
</tr>
<tr>
<td>Einlass:</td>
<td><meta itemprop="startDate" content="2014-11-28T19:00">19 Uhr</time></td>
</tr>
<tr>
<td>Polonaise:</td>
<td>20:30 Uhr</td>
</tr>
</table>
<br>
PREISE<table>
<tr>
<td>VVK</td>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<meta itemprop="price" content="16" />
<meta itemprop="priceCurrency" content="EUR" />
<meta itemprop="category" content="VVK" />
<td>16€</td>
</div>
</tr>
<tr>
<td>AK</td>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<meta itemprop="price" content="20" />
<meta itemprop="priceCurrency" content="EUR" />
<meta itemprop="category" content="AK" />
<td>20€</td>
</div>
</tr>
</table>
<br>
WO? <br>
<table><tr><td>
Kammersäle
</td></tr></table>
<br>
DANACH?<br>
<table><tr><td>
Flann O'Brien
</td></tr></table>
</b>
</div>
答案 0 :(得分:2)
据我所知,您应该将itemprop
值直接添加到元素:
唐&#39; T:
<td><meta itemprop="startDate" content="2014-11-28T19:00">...
执行:
<td itemprop="startDate" content="2014-11-28T19:00">...