how to add Schema.org into blogger?

Started by curaqua, 05-06-2017, 21:47:55

Previous topic - Next topic

curaquaTopic starter

Dear every one,
i'd try to add Shcema.org into my blogger but it was error when i saved topic, please help me to do this by Detailed instructions

Thanks in advance!


Intuz

Hello,

I hope this can help you out: https://developers.google.com/search/docs/data-types/articles

You can add following code using JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "Article",
  "headline": "Emmys 2015: The 5 categories we're most excited to see",
  "image": "http://rack.1.mshcdn.com/media/ZgkyMDE1LzA5LzIwLzQ0L2YyOGFiZmM5NmNkLmQ5ZjgxLmpwZwpwCXRodW1iCTEyMDB4NjI3IwplCWpwZw/418b1a9e/940/f28abfc9-6cd9-217b-8bc7-fd48dd3621a9_MM714-21.jpg",
"keywords": ["keyword 1","keyword 2","keyword 3","keyword 4","keyword 5"],
  "datePublished": "2015-09-20T13:39:38Z",
  "articleSection": "category",
  "creator": "Author Name",
  "author": "Author Name or website name",
  "articleBody": "The country was republic when it was the year of the development.......",
  "mainEntityOfPage": "True"
}
</script>


curaquaTopic starter

Dear Intuz,
Thank for your helping, i copied and pasted your code in my blog, now it's ok

SEO.Ninja

Schema.org is a type of information codification presented by Google, Microsoft, Yahoo, and Yandex. Since it's supported by so many big players online, it's the only real way to structure data online.
Visit the given website and apply the steps to implement the code on your website:- http://www.bloggerspice.com/2015/12/how-to-add-schema-markup-on-your-blogger-template.html

ORLOVA

Just go through with this :https://www.mybloggerguides.com/add-schema-structured-data-markup-in-blogger-template/

Hope you will get the solutions for this.


PaulShipman

#5
To add Schema.org markup to your Blogger, follow these steps:

1. Go to the Blogger Dashboard and log in to your account.
2. Select the blog where you want to add Schema.org markup.
3. On the left-hand sidebar, click on "Theme."
4. In the "Theme" section, click on the "Edit HTML" button.
5. On the "Edit Template" page, find the opening `<head>` tag. This tag is typically located towards the beginning of the HTML code.
6. Add the following code snippet just below the opening `<head>` tag:

```html
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Your Organization Name",
  "url": "https://www.yourwebsite.com",
  "logo": "https://www.yourwebsite.com/logo.png"
}
</script>
```

Replace "Your Organization Name" with the name of your organization or website, and replace "https://www.yourwebsite.com" with the URL of your website. You can also replace "https://www.yourwebsite.com/logo.png" with the URL of your logo image.

7. Save the changes by clicking on the "Save theme" button.

That's it! You have added a basic Schema.org markup for an organization. You can customize it further based on your specific needs and the type of schema you want to include.

Remember to use valid JSON syntax when modifying the code snippet. Make sure to test your changes by validating your website's markup using the Google Structured Data Testing Tool to ensure everything is working correctly.

damponting44

The idea is that by adding tags to different types of data on your page, you give mechanical validation to your data. Any software coming in, like a search engine scraper, can see and know that a bit of data is a review, or a blog post, or a title, or a caption, or whatever else. Rather than having to index it based on patterns, implications, and semantics, Google and the others can know without a doubt it is what it should be.
Schema.org is a type of information codification presented by Google, Microsoft, Yahoo, and Yandex. Since it's supported by so many big players online, it's the only real way to structure data online.