背景
过去5年我一直在使用microformats。我正在为所有新网站切换到schema.org方法,因为它是 - 恕我直言 - 更好地分离了样式和元信息。
此外,所有major search providers已采用并现在完全支持schema.org微数据方法。 这是一个非常轻松的过程,发现schema.org等同于大多数微数据对象,即hCard,hCalendar等。我对这些额外的可能性感到满意。
问题
答案 0 :(得分:1)
问题01:Creativeworks - >博客是架构等同于hatom。 没有任何线索,如果有人使用它或写过它。
我想知道schema.org在关注与微格式分离方面更好吗? schema.org在body元素中包含元元素。微格式是html类,因此本身支持分离。此外,每个主要的搜索提供商已经提供了微格式的报道,并没有减少。好奇,我是。
答案 1 :(得分:1)
您必须选择一种网页类型,例如http://schema.org/Blog,然后添加文章/博客帖子http://schema.org/BlogPosting
这是一个非常简单的示例:
<div itemscope itemtype="http://schema.org/Blog">
...
<article itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
...
</article>
<article itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
...
</article>
</div>
我试图在WordPress主题中实现它,也许我的代码会帮助你:https://github.com/pfefferle/SemPress/