1

我想为移动应用网站实现架构标记。我阅读了 schema.org/MobileApplication,但有很多属性。我没有得到哪些属性有助于为本地搜索提供更有效的输出?

4

3 回答 3

1

架构对每个网站页面都很重要。不要混淆,使用您的移动应用程序网站所需的属性。

于 2017-11-07T06:21:15.533 回答
0

模式标记允许搜索引擎以快捷方式分析大量信息。对于移动应用程序网站,您希望使用诸如 downloadUrl、countrySupported、fileSize、about、author、description 和 image 等属性。

于 2014-06-11T10:35:53.267 回答
0

数据结构架构谷歌本地搜索

<div itemscope itemtype="http://schema.org/SoftwareApplication">
  <span itemprop="name">Angry Birds</span> -

  REQUIRES <span itemprop="operatingSystem">ANDROID</span>
  <link itemprop="applicationCategory" href="http://schema.org/GameApplication"/>

  RATING:
  <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
    <span itemprop="ratingValue">4.6</span> (
    <span itemprop="ratingCount">8864</span> ratings )
  </div>

  <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
    Price: $<span itemprop="price">1.00</span>
    <meta itemprop="priceCurrency" content="USD" />
  </div>
</div>
于 2015-06-08T07:54:17.073 回答