Cómo agregar Rich Snippets en blogspot de forma fácil.

Aquí tienes un plugin para implementar los fragmentos enriquecidos o microdatos en un blogger, para poder hacerlo funcionar en tu blogspot debes ver el siguiente vídeo:

Rich Snippets Blogger
<!-- Rich Snippet Website | Datos Estructurados by tutorialbloggerorg.blogspot.com -->
<script type='application/ld+json'>
{
    "@context":"https://schema.org",
    "@type": "WebSite",
    "url": "<data:blog.homepageUrl.canonical/>",
    "potentialAction": {
        "@type": "SearchAction",
        "target": "<data:blog.searchUrl/>?q={search_term_string}",
        "query-input": "required name=search_term_string"
    }
}
</script>

<!-- Rich Snippet Organización | Datos Estructurados by tutorialbloggerorg.blogspot.com -->
<script type='application/ld+json'>
{
"@context":"https://schema.org",
"@type":"Organization",
"url":"<data:blog.homepageUrl.canonical/>",
"email": "vicente(at)tutorialblogger.org",
"sameAs":["https://www.facebook.com/tutorialbloggerorg","https://plus.google.com/+VicenteEspinozaR","https://twitter.com/tutorialblogger"],
"@id":"https://tutorialbloggerorg.blogspot.com/#organization",
"name":"Tutorial Blogger",
"logo":"https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgkUFpbrnQLD5eYryJkdvd6pq4TtDW7y8D_1kfY0McH68ZMIXq5CyaUXQrO0nxM5g0fHcuq6Agf7J1zqJUqtW_9WIHQbZwrEgOBbrsxOfqo1VFyKYILQ_peGELQ1AMDhlSZHWgn5ptjVO9T/s1600/logo-tutorial.png"
}
</script>

<!-- Rich Snippet Reseña | Datos Estructurados by tutorialbloggerorg.blogspot.com -->
<b:if cond='data:blog.url != data:blog.homepageUrl'>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Review",
"author":"Vicente Espinoza",
"itemreviewed":"<data:blog.pageName/>",
"description": "<data:blog.metaDescription/>",
"reviewRating": {
        "@type": "Rating",
        "bestRating": "5",
        "ratingValue": "4",
        "worstRating": "1"
      }
  
}
</script>

<!-- Rich Snippet Agregar Clasificación | Datos Estructurados by tutorialbloggerorg.blogspot.com -->

<script type="application/ld+json">
{
"@context": "http://schema.org",
  "@type": "AggregateRating",  
    "bestRating": "5",
	"itemreviewed":"<data:blog.pageName/>",
    "ratingCount": "24",
    "ratingValue": "3.5", 
    "reviewCount": "11"
}
</script>

<!-- Rich Snippet Blog Publicación  | Datos Estructurados by tutorialbloggerorg.blogspot.com -->

<script type='application/ld+json'>
 {
  "@context": "http://schema.org",
  "@type": "BlogPosting",
  "mainEntityOfPage":{
    "@type":"WebPage",
    "@id":"<data:blog.url.canonical/>"
  },
  "headline": "<data:view.title.escaped/>",
  "image": {
    "@type": "ImageObject",
    <b:if cond='data:view.featuredImage'>"url": "<b:eval expr='resizeImage(data:view.featuredImage, 1200, "1200:630")'/>",
    <b:elseif cond='data:blog.postImageUrl'/>"url": "<b:eval expr='resizeImage(data:blog.postImageUrl, 1200, "1200:630")'/>",
    <b:else/>"url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjF9v7JBRAAaHK6cGiQIQKa5KXnOJYNV6B11v5YR1aqOl28eDDK9Xer7g1LiZ_qanC4eQBkCpWZuFZfhlNfSX-exwB0GtzRcHwh6eyH44Y7bog_V7Jx7CQiWBdTxH7mdrt4bslpnFpG4US6/s1600/fondo-facebook.png",
    </b:if>"height": 1200,
    "width": 630
  },
  <b:if cond='data:post.thumbnailUrl'>"thumbnailUrl":"<data:post.thumbnailUrl/>",
  <b:else/>"thumbnailUrl":"https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiK0m7Us0FnY-vXMAdSwMLujx-JTu-ZJHWqAAEGcQexGG4GNlYeB2dbB4eDskHPnVgr8pEbJEY_Zz4Bog_ST6TLkU3xepwpZ_jhN1Ja0hzsqbAstnapkAtodGHxL49oGCJtpnejhS9nbjJ3/s1600/tutorialblogger-thumbnail.png",
  </b:if>"datePublished": "<data:post.timestampISO8601/>",
  "dateModified": "<data:post.lastUpdatedISO8601/>",
  "author": {
    "@type": "Person",
    "name": "Vicente Espinoza"
  },
  "publisher": {
    "@type": "Organization",
    "name": "Tutorial Blogger",
    "logo": {
      "@type": "ImageObject",
      "url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUwMMKQr_B_BEM7NRK9GYrYc5RaynZ2NfmKU0G_SHgN1ffW1R_i9HHmZl6aklA1AHlM1tHuyUKm72e8-k2UQwxCQoVhd1vBZy5slNzsaEQvsEK5cz1dYIgwEAhDh6FOaeiISCV3P7fdcCC/s1600/tutorialblogger-snippets-logo.png",
      "width": 99, 
      "height": 58
    }
  },
  "description": "<data:view.description.escaped/>"
 }
</script>
</b:if>



<!-- Rich Snippet BlogPosting | Datos Estructurados by tutorialbloggerorg.blogspot.com -->
<div itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> 
<img expr:alt='data:post.title' expr:src='data:post.firstImageUrl' itemprop='image'/>
<h1 itemprop='headline'><data:post.title/></h1><!-- titulo del post -->
	<span itemprop='author'><data:post.author/></span>
	
	<meta expr:content='data:post.timestampISO8601' itemprop='datePublished'/>	
	<meta expr:itemid='data:post.link ? data:post.link : data:post.url' itemType='https://schema.org/WebPage' itemprop='mainEntityOfPage' itemscope='itemscope'/>
	<meta expr:content='data:post.lastUpdatedISO8601' itemprop='dateModified'/>
     <div itemprop='publisher' itemscope='itemscope' itemtype='https://schema.org/Organization'>
      <div itemprop='logo' itemscope='itemscope' itemtype='https://schema.org/ImageObject'>
        <!-- Schema Mods: THE FOLLOWING URL WILL FAIL - CHANGE IT -->
        <meta content='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUwMMKQr_B_BEM7NRK9GYrYc5RaynZ2NfmKU0G_SHgN1ffW1R_i9HHmZl6aklA1AHlM1tHuyUKm72e8-k2UQwxCQoVhd1vBZy5slNzsaEQvsEK5cz1dYIgwEAhDh6FOaeiISCV3P7fdcCC/s1600/tutorialblogger-snippets-logo.png' itemprop='url'/> 
        <meta content='600' itemprop='width'/> <!-- Los logotipos no deben ser más anchos que 600px. -->
        <meta content='60' itemprop='height'/> <!-- y no más alto que 60px.-->
      </div>
      <meta expr:content='data:blog.title' itemprop='name'/>
    </div>
</div>


<!-- INFORMACIÓN SOBRE LOS RICH SNIPPETS -->

https://search.google.com/structured-data/testing-tool
https://schema.org/Article
https://schema.org/AggregateRating
https://schema.org/BlogPosting
https://developers.google.com/search/docs/guides/search-gallery
https://developers.google.com/search/docs/guides/mark-up-content
https://developers.google.com/search/docs/guides/sd-policies
https://codelabs.developers.google.com/codelabs/structured-data/index.html#0
https://developers.google.com/search/docs/guides/intro-structured-data
https://developers.google.com/search/docs/data-types/article
http://increnta.com/es/blog/rich-snippets-en-google/
https://www.zirev.com/2016/08/how-to-fix-datepublished-structured-data-error-in-blogger.html
https://github.com/WeaverStever/BlogSpot-Metadata-Template/wiki/Blogger:-dateModified-(and-datePublished)-structured-data-error
https://github.com/WeaverStever/BlogSpot-Metadata-Template/wiki/Blogger:-publisher-structured-data-error
https://www.antevenio.com/blog/2018/02/claves-para-crear-rich-snippets/
https://stackoverflow.com/questions/41696276/json-ld-using-datapost-body-in-blogger-template
https://bloggerbook.blakbin.com/2018/10/make-valid-ld-json-for-every-blogger.html
https://www.youtube.com/watch?v=OyanszeVOI8

¿No logras hacer funcionar este plugins en tu blog?


Cuenta conmigo para implementar este plugins en tu blogger. Si quieres que lo haga yo por ti, porque no tienes tiempo ni ganas de hacerlo, solo debes:

¡Contrátame Aquí!