通过架构优化的博客文章 [英] Blog Posts Optimized by Schema

查看:97
本文介绍了通过架构优化的博客文章的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用Rich Snippets优化HTML时,我对这些方法还是比较陌生的.我不确定以下每个列表项有何区别:

I am quite new to these approach in optimizing my HTML with Rich Snippets. I am not sure what is the differences of each of the list items below:

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

我在下面的示例中获得了此代码,我想知道哪些缺失项或代码可以优化搜索引擎可以理解的简单博客文章.我想知道所有可用于博客文章的丰富代码段.

I got this code below example below, and I want to know what are the missing items or codes that could optimized a simple blog post that search engines can understand. I'd like to know all the rich snippets available for a blogpost.

<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>

推荐答案

http://schema.org/Blog可以在首页上使用,您通常会在其中找到几篇博客文章的列表(也许还可以在每一页上查看整个博客范围内的内容) ,例如博客名称).

http://schema.org/Blog can be used on the front page, where you typically find a list of several blog posts (and maybe also for blog-wide things on every page, like the blog name).

http://schema.org/BlogPosting代表单个博客帖子.

http://schema.org/Article只是http://schema.org/BlogPosting更通用(每个BlogPosting都是Article ,但并非每个Article都是BlogPosting).如果您有一个典型的博客,则要使用http://schema.org/BlogPosting.

http://schema.org/Article is just more general than http://schema.org/BlogPosting (every BlogPosting is a Article, but not every Article is a BlogPosting). If you have a typical blog, you want to use http://schema.org/BlogPosting.

这篇关于通过架构优化的博客文章的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆