由Schema优化的博客帖子

rah*_*ame 4 metadata microdata rich-snippets schema.org

在使用Rich Snippets优化我的HTML时,我对这些方法很陌生.我不确定以下每个列表项的区别是什么:

  1. http://schema.org/Article
  2. http://schema.org/BlogPosting
  3. http://schema.org/Blog

我在下面的示例中得到了这个代码,我想知道什么是可以优化搜索引擎可以理解的简单博客文章的缺失项目或代码.我想知道所有可用于博客帖子的丰富网页摘要.


<div id="blog_post" itemscope="" itemtype="http://schema.org/BlogPosting">
            <h2 itemprop="name headline">Post Title</h2>
            <div class="byline">
                Written by
                <span itemprop="author" itemscope="" itemtype="http://schema.org/Person">
                    <span itemprop="name">
                        <a href="https://" itemprop="url" rel="author">Author</a>
                    </span>
                </span>
                on
                <time datetime="2011-05-17T22:00" itemprop="datePublished">Tuesday May 17th 2013</time>
            </div>
            <div class="content" itemprop="articleBody">Content...</div>
</div>
Run Code Online (Sandbox Code Playgroud)

uno*_*nor 13

http://schema.org/Blog 可以在首页上使用,您可以在其中找到几个博客帖子的列表(也可能是每个页面上的博客内容,例如博客名称).

http://schema.org/BlogPosting 代表一篇博文.

http://schema.org/Article只是更普遍http://schema.org/BlogPosting(每BlogPosting一个Article,但不是每Article一个BlogPosting).如果您有一个典型的博客,您想要使用http://schema.org/BlogPosting.