Mobile app version of vmapp.org
Login or Join
Si4351233

: How do I add structured data for Google Webmaster Tools? I used Weebly to build my website. My site is 'on' Google, but GWT is saying it can't detect any structured data. Where and how

@Si4351233

Posted in: #GoogleSearchConsole #StructuredData #Weebly

I used Weebly to build my website. My site is 'on' Google, but GWT is saying it can't detect any structured data.

Where and how do I do this? I understand what it is but don't know how to go about doing it.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Si4351233

2 Comments

Sorted by latest first Latest Oldest Best

 

@Connie744

there is now a better option: use the Structured Data Highlighter on a typical page to graphically show where structured data is, GWT will then assume pages with similar structure have the same elements needing structured data, no need to code anymore.

The option is just below the one that lists you see the Structured Data GWT has/hasn't been able to find.

10% popularity Vote Up Vote Down


 

@Gretchen104

This article from Google describes it well. In short:


Pick a markup format (microdata, microformtats, RDFa).
Mark up your content according, for example using the formats described on www.schema.org/. Test your markup with the structured data testing tool.


For example, if you have a product on your site you need to wrap some custom HTML around it. Look at the example at the bottom of the product page, or for an even simpler example:

<div itemscope itemtype="http://schema.org/Product">
<span itemprop="name">Kenmore White 17" Microwave</span>
<img src="kenmore-microwave-17in.jpg" alt='Kenmore 17" Microwave' />

<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<span itemprop="price">.00</span>
</div>
</div>


All the divs and spans are the extra stuff added to make it structured.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme