SlideShare uma empresa Scribd logo
1 de 87
Baixar para ler offline
@rebelytics
Implementing schema.org
in the JSON-LD format
with Google Tag Manager
@rebelytics
Implementing schema.org
in the JSON-LD format
with Google Tag Manager
@rebelytics@rebelytics
Implementing schema.org
in the JSON-LD format
with Google Tag Manager
@rebelytics
Schema.org is a vocabulary for structured data
@rebelytics
@rebelytics
schema.org can be used to describe:
@rebelytics
entities
@rebelytics
@rebelytics
relationshipsrelationships
@rebelytics
@rebelytics
and actions
@rebelytics
@rebelytics
schema.org was founded by
Google, Microsoft, Yahoo & Yandex
@rebelytics
@rebelytics
schema.org can be used in e-mails,
@rebelytics
on websites,
@rebelytics
and with all other types of documents.
@rebelytics
schema.org is a vocabulary, so
https://schema.org/ is our dictionary.
There’s no need to memorise any of it.
@rebelytics
Here’s an example for a page in our dictionary.
@rebelytics
Our dictionary provides us with detailed information
about the properties we can use to describe each entity
and the values that these properties can take.
@rebelytics
Implementing schema.org
in the JSON-LD format
with Google Tag Manager
@rebelytics@rebelytics
Implementing schema.org
in the JSON-LD format
with Google Tag Manager
@rebelytics
JSON-LD is one of several formats that can be
used to encode schema.org
@rebelytics
Advantage of JSON-LD:
Does not have to be embedded into existing code
> easier to read & implement
@rebelytics
@rebelytics
JSON-LD in a separate script Microdata included in HTML tags
@rebelytics
Implementing schema.org
in the JSON-LD format
with Google Tag Manager
@rebelytics@rebelytics
Implementing schema.org
in the JSON-LD format
with Google Tag Manager
@rebelytics
Google Tag Manager allows us to easily add
JSON-LD scripts to all pages on a website
@rebelytics
Values can be populated with the help of
Google Tag Manager variables
@rebelytics
This means: One script for thousands of
pages with the same data type
@rebelytics
Implementing schema.org
in the JSON-LD format
with Google Tag Manager
@rebelytics
Let’s do it!
@rebelytics
@rebelytics@rebelytics
What we need to do
Step by step
@rebelytics
5 simple steps
1. Pick a data type that we want to implement on a certain page type
@rebelytics
5 simple steps
1. Pick a data type that we want to implement on a certain page type
2. Create a JSON-LD script with the properties we want to describe
@rebelytics
5 simple steps
1. Pick a data type that we want to implement on a certain page type
2. Create a JSON-LD script with the properties we want to describe
3. Create the GTM variables we need for the values we want to include
@rebelytics
5 simple steps
1. Pick a data type that we want to implement on a certain page type
2. Create a JSON-LD script with the properties we want to describe
3. Create the GTM variables we need for the values we want to include
4. Create a GTM tag that injects the JSON-LD script with the values into the page
@rebelytics
5 simple steps
1. Pick a data type that we want to implement on a certain page type
2. Create a JSON-LD script with the properties we want to describe
3. Create the GTM variables we need for the values we want to include
4. Create a GTM tag that injects the JSON-LD script with the values into the page
5. Debugging and testing
@rebelytics@rebelytics
Step 1
Pick a data type that we want to
implement on a certain page type
@rebelytics
Google’s Search Gallery is a good starting point
to find data types that are supported by Google
https://developers.google.com/search/docs/guides/search-gallery
@rebelyticshttps://developers.google.com/search/docs/guides/search-gallery
@rebelytics
But:
There’s no need to limit yourself to what Google supports
@rebelytics
But:
There’s no need to limit yourself to what Google supports
➔ Google will certainly support more data types and properties in future
@rebelytics
But:
There’s no need to limit yourself to what Google supports
➔ Google will certainly support more data types and properties in future
➔ Other machines process and use structured data
@rebelytics
But:
There’s no need to limit yourself to what Google supports
➔ Google will certainly support more data types and properties in future
➔ Other machines process and use structured data
Let’s start with an example!
@rebelytics
Google supports social profile
links for the data types Person
and Organization.
@rebelytics
Let’s have a look at what markup Google
suggests for the data type Person.
@rebelytics
Google suggests marking up the name of the person, a
URL that represents the person, and links to social profiles.
@rebelytics
➔ On our example page, we
also have job title, phone
and fax numbers, email
address, postal address,
languages spoken, etc.
➔ All of the above are
supported by schema.org:
https://schema.org/Person
@rebelytics@rebelytics
@rebelytics
Let’s mark up everything that’s on the page and supported by schema.org:
➔ address
➔ e-mail
➔ fax number
➔ image
➔ job title
➔ name
➔ telephone
➔ url
➔ works for ...
➔ social profile links
@rebelytics@rebelytics
Step 2
Create a JSON-LD script with the
properties we want to describe
@rebelytics
How I do it: Copy an example script from
Google’s Search Gallery and manually
adjust and expand it.
@rebelytics
The values here are represented by GTM variables, which leads us to the next step:
Creating the Google Tag Manager variables we need.
Tool tip:
https://technicalseo.com/seo-tools/schema-markup-generator/
@rebelytics@rebelytics
Step 3
Create the GTM variables we need
for the values we want to include
@rebelytics
GTM variables
➔ On our example website, we have thousands of lawyer profile pages
@rebelytics
GTM variables
➔ On our example website, we have thousands of lawyer profile pages
➔ We can’t create an individual script for each page, so we use one script for all
pages and add the values dynamically with GTM variables
@rebelytics
GTM variables
➔ On our example website, we have thousands of lawyer profile pages
➔ We can’t create an individual script for each page, so we use one script for all
pages and add the values dynamically with GTM variables
➔ For this implementation, there are two variable types we can choose from:
◆ DOM element variables
◆ Data layer variables
@rebelytics
Option 1: DOM element variables
➔ DOM element variables can be used to extract elements from pages using
CSS selectors
https://www.w3schools.com/cssref/css_selectors.asp
@rebelytics
➔ You can identify the CSS selector of an element using Chrome’s Developer Tools
(Right click on element > Inspect > Right click on selected HTML > Copy > Copy selector)
Option 1: DOM element variables
@rebelytics@rebelytics
@rebelytics
@rebelytics
This variable extracts the name of the lawyer from the example page
using a CSS selector
@rebelytics
This variable extracts the name of the lawyer from the example page
using a CSS selector
@rebelytics
@rebelytics
Option 2: Data layer variables
➔ The data layer is a JavaScript object on the page that contains information
that can be accessed by Google Tag Manager
@rebelytics
Option 2: Data layer variables
➔ The data layer is a JavaScript object on the page that contains information
that can be accessed by Google Tag Manager
➔ The data layer is useful for lots of different applications, for example
Enhanced Ecommerce Tracking with Google Analytics
@rebelytics
Option 2: Data layer variables
➔ The data layer is a JavaScript object on the page that contains information
that can be accessed by Google Tag Manager
➔ The data layer is useful for lots of different applications, for example
Enhanced Ecommerce Tracking with Google Analytics
➔ The data layer normally has to be set up on the website itself and not
through Google Tag Manager
@rebelytics
In our example, we pass some of the data that we cannot extract
with the help of DOM element variables via the data layer
@rebelytics
We can then create a data layer variable in Google
Tag Manager for each value we want to access
@rebelytics
On our example page, we use a
combination of DOM element
and data layer variables to
populate the JSON-LD script
@rebelytics@rebelytics
Step 4
Create a GTM tag that injects the JSON-LD
script with the values into the page
@rebelytics
@rebelytics
➔ A few simple additional lines of jQuery
inject the script into the head of the
page
@rebelytics@rebelytics
Step 5
Debugging and testing
@rebelytics
We can now publish this and test it with Google’s
Structured Data Testing Tool
(https://search.google.com/structured-data/testing-tool/u/0/)
@rebelytics
No errors, no warnings,
Google is happy :)
@rebelytics
A few days after publishing, we can also check
Google Search Console to see if the data has been
processed correctly
@rebelytics@rebelytics
@rebelytics@rebelytics
@rebelytics
Implementing schema.org
in the JSON-LD format
with Google Tag Manager
@rebelytics
Really easy, isn’t it?
➔ You can use the exact same steps for all other data types: Breadcrumbs, Sitelinks
Searchbox, Events, Jobs, Articles, Products, etc.
@rebelytics
Really easy, isn’t it?
➔ You can use the exact same steps for all other data types: Breadcrumbs, Sitelinks
Searchbox, Events, Jobs, Articles, Products, etc.
➔ For some of the simpler data types, you won’t even need GTM variables
@rebelytics
Really easy, isn’t it?
➔ You can use the exact same steps for all other data types: Breadcrumbs, Sitelinks
Searchbox, Events, Jobs, Articles, Products, etc.
➔ For some of the simpler data types, you won’t even need GTM variables
➔ For ecommerce sites, you can even use the same data layer values for Enhanced
Ecommerce Tracking and product JSON-LD
@rebelytics@rebelytics
Two more examples
@rebelytics
JSON-LD for event pages
@rebelytics
JSON-LD for job postings
@rebelytics@rebelytics
Some warnings
before you do it
yourself
@rebelytics
➔ Not everybody supports JSON-LD yet
@rebelytics
➔ JSON-LD implemented with
Google Tag Manager is only
accessible for programmes
that render the page and
execute the GTM script
@rebelytics
➔ Even if Google Tag Manager is often the easiest way to implement things on a
page, it is not always the best way. Speak to your dev team first.
@rebelytics
@rebelytics
➔ DOM element variables are not very stable, as CSS selectors may change over time.
@rebelytics@rebelytics
The end
Get in contact:
twitter.com/rebelytics
eoghan@searchviu.com
linkedin.com/in/eoghanhenn/

Mais conteúdo relacionado

Mais procurados

Belajar Bahasa Arab.pdf
Belajar Bahasa Arab.pdfBelajar Bahasa Arab.pdf
Belajar Bahasa Arab.pdfrsy
 
ಜ್ಞಾನದೀಪ. Pdf
ಜ್ಞಾನದೀಪ. Pdfಜ್ಞಾನದೀಪ. Pdf
ಜ್ಞಾನದೀಪ. PdfKarnatakaOER
 
The Philosophy of Fasting - (Urdu)
The Philosophy of Fasting - (Urdu)The Philosophy of Fasting - (Urdu)
The Philosophy of Fasting - (Urdu)Martinkay99
 
แนวข้อสอบเตรียมสอบเจ้าหน้าที่วิเคราะห์นโยบายและแผน (เล่มที่ 8)
แนวข้อสอบเตรียมสอบเจ้าหน้าที่วิเคราะห์นโยบายและแผน (เล่มที่ 8)แนวข้อสอบเตรียมสอบเจ้าหน้าที่วิเคราะห์นโยบายและแผน (เล่มที่ 8)
แนวข้อสอบเตรียมสอบเจ้าหน้าที่วิเคราะห์นโยบายและแผน (เล่มที่ 8)waoram
 
بونیادی زمان لە شیعری هاوچەرخی کوردیدا
بونیادی زمان لە شیعری هاوچەرخی کوردیدابونیادی زمان لە شیعری هاوچەرخی کوردیدا
بونیادی زمان لە شیعری هاوچەرخی کوردیداChalak Muhamad
 
025 cinema%20effect
025 cinema%20effect025 cinema%20effect
025 cinema%20effectHari99
 
ระเบียบสํานักนายกรัฐมนตรีว่าด้วยงานสารบรรณ พ.ศ. 2526 และที่แก้ไขเพิ่มเติม
ระเบียบสํานักนายกรัฐมนตรีว่าด้วยงานสารบรรณ พ.ศ. 2526 และที่แก้ไขเพิ่มเติมระเบียบสํานักนายกรัฐมนตรีว่าด้วยงานสารบรรณ พ.ศ. 2526 และที่แก้ไขเพิ่มเติม
ระเบียบสํานักนายกรัฐมนตรีว่าด้วยงานสารบรรณ พ.ศ. 2526 และที่แก้ไขเพิ่มเติมwasanyen
 
การวิเคราะห์ปัญหาด้วยแผนภูมิก้างปลา (FISH BONE)
การวิเคราะห์ปัญหาด้วยแผนภูมิก้างปลา (FISH BONE)การวิเคราะห์ปัญหาด้วยแผนภูมิก้างปลา (FISH BONE)
การวิเคราะห์ปัญหาด้วยแผนภูมิก้างปลา (FISH BONE)Sasipa YAisong
 

Mais procurados (13)

Belajar Bahasa Arab.pdf
Belajar Bahasa Arab.pdfBelajar Bahasa Arab.pdf
Belajar Bahasa Arab.pdf
 
Banking interview for experienced banker
Banking interview for experienced bankerBanking interview for experienced banker
Banking interview for experienced banker
 
ಜ್ಞಾನದೀಪ. Pdf
ಜ್ಞಾನದೀಪ. Pdfಜ್ಞಾನದೀಪ. Pdf
ಜ್ಞಾನದೀಪ. Pdf
 
The Philosophy of Fasting - (Urdu)
The Philosophy of Fasting - (Urdu)The Philosophy of Fasting - (Urdu)
The Philosophy of Fasting - (Urdu)
 
তামাদি_আইন__১৯০৮.pdf
তামাদি_আইন__১৯০৮.pdfতামাদি_আইন__১৯০৮.pdf
তামাদি_আইন__১৯০৮.pdf
 
Advanced learner's functional english tanbircox
Advanced learner's functional english tanbircoxAdvanced learner's functional english tanbircox
Advanced learner's functional english tanbircox
 
แนวข้อสอบเตรียมสอบเจ้าหน้าที่วิเคราะห์นโยบายและแผน (เล่มที่ 8)
แนวข้อสอบเตรียมสอบเจ้าหน้าที่วิเคราะห์นโยบายและแผน (เล่มที่ 8)แนวข้อสอบเตรียมสอบเจ้าหน้าที่วิเคราะห์นโยบายและแผน (เล่มที่ 8)
แนวข้อสอบเตรียมสอบเจ้าหน้าที่วิเคราะห์นโยบายและแผน (เล่มที่ 8)
 
Sikh Sidhant - Punjabi by Sant Baba Iqbal Singh Ji
Sikh Sidhant - Punjabi by Sant Baba Iqbal Singh JiSikh Sidhant - Punjabi by Sant Baba Iqbal Singh Ji
Sikh Sidhant - Punjabi by Sant Baba Iqbal Singh Ji
 
Maintenance of computer
Maintenance of computer Maintenance of computer
Maintenance of computer
 
بونیادی زمان لە شیعری هاوچەرخی کوردیدا
بونیادی زمان لە شیعری هاوچەرخی کوردیدابونیادی زمان لە شیعری هاوچەرخی کوردیدا
بونیادی زمان لە شیعری هاوچەرخی کوردیدا
 
025 cinema%20effect
025 cinema%20effect025 cinema%20effect
025 cinema%20effect
 
ระเบียบสํานักนายกรัฐมนตรีว่าด้วยงานสารบรรณ พ.ศ. 2526 และที่แก้ไขเพิ่มเติม
ระเบียบสํานักนายกรัฐมนตรีว่าด้วยงานสารบรรณ พ.ศ. 2526 และที่แก้ไขเพิ่มเติมระเบียบสํานักนายกรัฐมนตรีว่าด้วยงานสารบรรณ พ.ศ. 2526 และที่แก้ไขเพิ่มเติม
ระเบียบสํานักนายกรัฐมนตรีว่าด้วยงานสารบรรณ พ.ศ. 2526 และที่แก้ไขเพิ่มเติม
 
การวิเคราะห์ปัญหาด้วยแผนภูมิก้างปลา (FISH BONE)
การวิเคราะห์ปัญหาด้วยแผนภูมิก้างปลา (FISH BONE)การวิเคราะห์ปัญหาด้วยแผนภูมิก้างปลา (FISH BONE)
การวิเคราะห์ปัญหาด้วยแผนภูมิก้างปลา (FISH BONE)
 

Semelhante a Implementing schema.org in the JSON-LD format with Google Tag Manager

Introduction to Microdata & Google Rich Snippets
Introduction to Microdata  & Google Rich SnippetsIntroduction to Microdata  & Google Rich Snippets
Introduction to Microdata & Google Rich SnippetsKishan Gor
 
The Structured Data Toolbox for SEOs #SMXEast
The Structured Data Toolbox for SEOs #SMXEast The Structured Data Toolbox for SEOs #SMXEast
The Structured Data Toolbox for SEOs #SMXEast Aleyda Solís
 
Advanced Web Scraping or How To Make Internet Your Database #seoplus2018
Advanced Web Scraping or How To Make Internet Your Database #seoplus2018Advanced Web Scraping or How To Make Internet Your Database #seoplus2018
Advanced Web Scraping or How To Make Internet Your Database #seoplus2018Esteve Castells
 
Track Everything with Google Tag Manager - #DFWSEM May 2017
Track Everything with Google Tag Manager -  #DFWSEM May 2017Track Everything with Google Tag Manager -  #DFWSEM May 2017
Track Everything with Google Tag Manager - #DFWSEM May 2017Ruth Burr Reedy
 
Migration Best Practices - Search Y 2019, Paris
Migration Best Practices - Search Y 2019, ParisMigration Best Practices - Search Y 2019, Paris
Migration Best Practices - Search Y 2019, ParisBastian Grimm
 
Integrating Structured Data (to an SEO Plan) for the Win _ WTSWorkshop '23.pptx
Integrating Structured Data (to an SEO Plan) for the Win _ WTSWorkshop '23.pptxIntegrating Structured Data (to an SEO Plan) for the Win _ WTSWorkshop '23.pptx
Integrating Structured Data (to an SEO Plan) for the Win _ WTSWorkshop '23.pptxBegum Kaya
 
How to get data with Google Tag Manager when developer is not available
How to get data with Google Tag Manager when developer is not availableHow to get data with Google Tag Manager when developer is not available
How to get data with Google Tag Manager when developer is not availableJulius Fedorovicius
 
Migration Best Practices - SMX West 2019
Migration Best Practices - SMX West 2019Migration Best Practices - SMX West 2019
Migration Best Practices - SMX West 2019Bastian Grimm
 
SMX Advanced 2018 Solving Complex SEO Problems by Patrick Stox
SMX Advanced 2018 Solving Complex SEO Problems by Patrick StoxSMX Advanced 2018 Solving Complex SEO Problems by Patrick Stox
SMX Advanced 2018 Solving Complex SEO Problems by Patrick Stoxpatrickstox
 
Learn Schema Markup to boost your SEO
Learn Schema Markup to boost your SEOLearn Schema Markup to boost your SEO
Learn Schema Markup to boost your SEOeMarket Education
 
From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...
From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...
From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...Connected Data World
 
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog TemplateBlog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog TemplateSean Burgess
 
BrightonSEO Structured Data by Alexis Sanders
BrightonSEO Structured Data by Alexis SandersBrightonSEO Structured Data by Alexis Sanders
BrightonSEO Structured Data by Alexis SandersAlexis Sanders
 
SMX Advanced 2018 SEO for Javascript Frameworks by Patrick Stox
SMX Advanced 2018 SEO for Javascript Frameworks by Patrick StoxSMX Advanced 2018 SEO for Javascript Frameworks by Patrick Stox
SMX Advanced 2018 SEO for Javascript Frameworks by Patrick Stoxpatrickstox
 
What is Structured Data?
What is Structured Data?What is Structured Data?
What is Structured Data?Abhishek Kumar
 
Alexis + Max - We Love SEO 19 - Bot X
Alexis + Max - We Love SEO 19 - Bot XAlexis + Max - We Love SEO 19 - Bot X
Alexis + Max - We Love SEO 19 - Bot XAlexis Sanders
 
Beginner's Guide to SEO [Technical SEO & On Page]
Beginner's Guide to SEO [Technical SEO & On Page]Beginner's Guide to SEO [Technical SEO & On Page]
Beginner's Guide to SEO [Technical SEO & On Page]Boni Satani
 

Semelhante a Implementing schema.org in the JSON-LD format with Google Tag Manager (20)

Introduction to Microdata & Google Rich Snippets
Introduction to Microdata  & Google Rich SnippetsIntroduction to Microdata  & Google Rich Snippets
Introduction to Microdata & Google Rich Snippets
 
The Structured Data Toolbox for SEOs #SMXEast
The Structured Data Toolbox for SEOs #SMXEast The Structured Data Toolbox for SEOs #SMXEast
The Structured Data Toolbox for SEOs #SMXEast
 
Advanced Web Scraping or How To Make Internet Your Database #seoplus2018
Advanced Web Scraping or How To Make Internet Your Database #seoplus2018Advanced Web Scraping or How To Make Internet Your Database #seoplus2018
Advanced Web Scraping or How To Make Internet Your Database #seoplus2018
 
Schema Tags In Seo
Schema Tags In SeoSchema Tags In Seo
Schema Tags In Seo
 
Track Everything with Google Tag Manager - #DFWSEM May 2017
Track Everything with Google Tag Manager -  #DFWSEM May 2017Track Everything with Google Tag Manager -  #DFWSEM May 2017
Track Everything with Google Tag Manager - #DFWSEM May 2017
 
Migration Best Practices - Search Y 2019, Paris
Migration Best Practices - Search Y 2019, ParisMigration Best Practices - Search Y 2019, Paris
Migration Best Practices - Search Y 2019, Paris
 
Integrating Structured Data (to an SEO Plan) for the Win _ WTSWorkshop '23.pptx
Integrating Structured Data (to an SEO Plan) for the Win _ WTSWorkshop '23.pptxIntegrating Structured Data (to an SEO Plan) for the Win _ WTSWorkshop '23.pptx
Integrating Structured Data (to an SEO Plan) for the Win _ WTSWorkshop '23.pptx
 
How to get data with Google Tag Manager when developer is not available
How to get data with Google Tag Manager when developer is not availableHow to get data with Google Tag Manager when developer is not available
How to get data with Google Tag Manager when developer is not available
 
Migration Best Practices - SMX West 2019
Migration Best Practices - SMX West 2019Migration Best Practices - SMX West 2019
Migration Best Practices - SMX West 2019
 
SMX Advanced 2018 Solving Complex SEO Problems by Patrick Stox
SMX Advanced 2018 Solving Complex SEO Problems by Patrick StoxSMX Advanced 2018 Solving Complex SEO Problems by Patrick Stox
SMX Advanced 2018 Solving Complex SEO Problems by Patrick Stox
 
SEARCH Y - Bastian Grimm - Migrations Best Practices
SEARCH Y - Bastian Grimm -  Migrations Best PracticesSEARCH Y - Bastian Grimm -  Migrations Best Practices
SEARCH Y - Bastian Grimm - Migrations Best Practices
 
Learn Schema Markup to boost your SEO
Learn Schema Markup to boost your SEOLearn Schema Markup to boost your SEO
Learn Schema Markup to boost your SEO
 
From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...
From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...
From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...
 
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog TemplateBlog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
 
BrightonSEO Structured Data by Alexis Sanders
BrightonSEO Structured Data by Alexis SandersBrightonSEO Structured Data by Alexis Sanders
BrightonSEO Structured Data by Alexis Sanders
 
SMX Advanced 2018 SEO for Javascript Frameworks by Patrick Stox
SMX Advanced 2018 SEO for Javascript Frameworks by Patrick StoxSMX Advanced 2018 SEO for Javascript Frameworks by Patrick Stox
SMX Advanced 2018 SEO for Javascript Frameworks by Patrick Stox
 
What is Structured Data?
What is Structured Data?What is Structured Data?
What is Structured Data?
 
Introduction to Microdata & Google Rich Snippets
Introduction to Microdata  & Google Rich SnippetsIntroduction to Microdata  & Google Rich Snippets
Introduction to Microdata & Google Rich Snippets
 
Alexis + Max - We Love SEO 19 - Bot X
Alexis + Max - We Love SEO 19 - Bot XAlexis + Max - We Love SEO 19 - Bot X
Alexis + Max - We Love SEO 19 - Bot X
 
Beginner's Guide to SEO [Technical SEO & On Page]
Beginner's Guide to SEO [Technical SEO & On Page]Beginner's Guide to SEO [Technical SEO & On Page]
Beginner's Guide to SEO [Technical SEO & On Page]
 

Último

How videos can elevate your Google rankings and improve your EEAT - Benjamin ...
How videos can elevate your Google rankings and improve your EEAT - Benjamin ...How videos can elevate your Google rankings and improve your EEAT - Benjamin ...
How videos can elevate your Google rankings and improve your EEAT - Benjamin ...Benjamin Szturmaj
 
GreenSEO April 2024: Join the Green Web Revolution
GreenSEO April 2024: Join the Green Web RevolutionGreenSEO April 2024: Join the Green Web Revolution
GreenSEO April 2024: Join the Green Web RevolutionWilliam Barnes
 
The Science of Landing Page Messaging.pdf
The Science of Landing Page Messaging.pdfThe Science of Landing Page Messaging.pdf
The Science of Landing Page Messaging.pdfVWO
 
The Rise of Virtual Influencers: A New Era in Social Media Marketing.pptx
The Rise of Virtual Influencers: A New Era in Social Media Marketing.pptxThe Rise of Virtual Influencers: A New Era in Social Media Marketing.pptx
The Rise of Virtual Influencers: A New Era in Social Media Marketing.pptxChelsiaD
 
How to Leverage Behavioral Science Insights for Direct Mail Success
How to Leverage Behavioral Science Insights for Direct Mail SuccessHow to Leverage Behavioral Science Insights for Direct Mail Success
How to Leverage Behavioral Science Insights for Direct Mail SuccessAggregage
 
What is Google Search Console and What is it provide?
What is Google Search Console and What is it provide?What is Google Search Console and What is it provide?
What is Google Search Console and What is it provide?riteshhsociall
 
Social Samosa Guidebook for SAMMIES 2024.pdf
Social Samosa Guidebook for SAMMIES 2024.pdfSocial Samosa Guidebook for SAMMIES 2024.pdf
Social Samosa Guidebook for SAMMIES 2024.pdfSocial Samosa
 
Situation Analysis | Management Company.
Situation Analysis | Management Company.Situation Analysis | Management Company.
Situation Analysis | Management Company.DanielaQuiroz63
 
Unraveling the Mystery of the Hinterkaifeck Murders.pptx
Unraveling the Mystery of the Hinterkaifeck Murders.pptxUnraveling the Mystery of the Hinterkaifeck Murders.pptx
Unraveling the Mystery of the Hinterkaifeck Murders.pptxelizabethella096
 
Netflix Ads The Game Changer in Video Ads – Who Needs YouTube.pptx (Chester Y...
Netflix Ads The Game Changer in Video Ads – Who Needs YouTube.pptx (Chester Y...Netflix Ads The Game Changer in Video Ads – Who Needs YouTube.pptx (Chester Y...
Netflix Ads The Game Changer in Video Ads – Who Needs YouTube.pptx (Chester Y...ChesterYang6
 
Factors-Influencing-Branding-Strategies.pptx
Factors-Influencing-Branding-Strategies.pptxFactors-Influencing-Branding-Strategies.pptx
Factors-Influencing-Branding-Strategies.pptxVikasTiwari846641
 
Marketing Management Presentation Final.pptx
Marketing Management Presentation Final.pptxMarketing Management Presentation Final.pptx
Marketing Management Presentation Final.pptxabhishekshetti14
 
Aryabhata I, II of mathematics of both.pptx
Aryabhata I, II of mathematics of both.pptxAryabhata I, II of mathematics of both.pptx
Aryabhata I, II of mathematics of both.pptxtegevi9289
 
April 2024 - VBOUT Partners Meeting Group
April 2024 - VBOUT Partners Meeting GroupApril 2024 - VBOUT Partners Meeting Group
April 2024 - VBOUT Partners Meeting GroupVbout.com
 
Google 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best StrategiesGoogle 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best StrategiesSearch Engine Journal
 
Avoid the 2025 web accessibility rush: do not fear WCAG compliance
Avoid the 2025 web accessibility rush: do not fear WCAG complianceAvoid the 2025 web accessibility rush: do not fear WCAG compliance
Avoid the 2025 web accessibility rush: do not fear WCAG complianceDamien ROBERT
 
Branding strategies of new company .pptx
Branding strategies of new company .pptxBranding strategies of new company .pptx
Branding strategies of new company .pptxVikasTiwari846641
 

Último (20)

BUY GMAIL ACCOUNTS PVA USA IP INDIAN IP GMAIL
BUY GMAIL ACCOUNTS PVA USA IP INDIAN IP GMAILBUY GMAIL ACCOUNTS PVA USA IP INDIAN IP GMAIL
BUY GMAIL ACCOUNTS PVA USA IP INDIAN IP GMAIL
 
How videos can elevate your Google rankings and improve your EEAT - Benjamin ...
How videos can elevate your Google rankings and improve your EEAT - Benjamin ...How videos can elevate your Google rankings and improve your EEAT - Benjamin ...
How videos can elevate your Google rankings and improve your EEAT - Benjamin ...
 
SEO Master Class - Steve Wiideman, Wiideman Consulting Group
SEO Master Class - Steve Wiideman, Wiideman Consulting GroupSEO Master Class - Steve Wiideman, Wiideman Consulting Group
SEO Master Class - Steve Wiideman, Wiideman Consulting Group
 
GreenSEO April 2024: Join the Green Web Revolution
GreenSEO April 2024: Join the Green Web RevolutionGreenSEO April 2024: Join the Green Web Revolution
GreenSEO April 2024: Join the Green Web Revolution
 
The Science of Landing Page Messaging.pdf
The Science of Landing Page Messaging.pdfThe Science of Landing Page Messaging.pdf
The Science of Landing Page Messaging.pdf
 
Generative AI Master Class - Generative AI, Unleash Creative Opportunity - Pe...
Generative AI Master Class - Generative AI, Unleash Creative Opportunity - Pe...Generative AI Master Class - Generative AI, Unleash Creative Opportunity - Pe...
Generative AI Master Class - Generative AI, Unleash Creative Opportunity - Pe...
 
The Rise of Virtual Influencers: A New Era in Social Media Marketing.pptx
The Rise of Virtual Influencers: A New Era in Social Media Marketing.pptxThe Rise of Virtual Influencers: A New Era in Social Media Marketing.pptx
The Rise of Virtual Influencers: A New Era in Social Media Marketing.pptx
 
How to Leverage Behavioral Science Insights for Direct Mail Success
How to Leverage Behavioral Science Insights for Direct Mail SuccessHow to Leverage Behavioral Science Insights for Direct Mail Success
How to Leverage Behavioral Science Insights for Direct Mail Success
 
What is Google Search Console and What is it provide?
What is Google Search Console and What is it provide?What is Google Search Console and What is it provide?
What is Google Search Console and What is it provide?
 
Social Samosa Guidebook for SAMMIES 2024.pdf
Social Samosa Guidebook for SAMMIES 2024.pdfSocial Samosa Guidebook for SAMMIES 2024.pdf
Social Samosa Guidebook for SAMMIES 2024.pdf
 
Situation Analysis | Management Company.
Situation Analysis | Management Company.Situation Analysis | Management Company.
Situation Analysis | Management Company.
 
Unraveling the Mystery of the Hinterkaifeck Murders.pptx
Unraveling the Mystery of the Hinterkaifeck Murders.pptxUnraveling the Mystery of the Hinterkaifeck Murders.pptx
Unraveling the Mystery of the Hinterkaifeck Murders.pptx
 
Netflix Ads The Game Changer in Video Ads – Who Needs YouTube.pptx (Chester Y...
Netflix Ads The Game Changer in Video Ads – Who Needs YouTube.pptx (Chester Y...Netflix Ads The Game Changer in Video Ads – Who Needs YouTube.pptx (Chester Y...
Netflix Ads The Game Changer in Video Ads – Who Needs YouTube.pptx (Chester Y...
 
Factors-Influencing-Branding-Strategies.pptx
Factors-Influencing-Branding-Strategies.pptxFactors-Influencing-Branding-Strategies.pptx
Factors-Influencing-Branding-Strategies.pptx
 
Marketing Management Presentation Final.pptx
Marketing Management Presentation Final.pptxMarketing Management Presentation Final.pptx
Marketing Management Presentation Final.pptx
 
Aryabhata I, II of mathematics of both.pptx
Aryabhata I, II of mathematics of both.pptxAryabhata I, II of mathematics of both.pptx
Aryabhata I, II of mathematics of both.pptx
 
April 2024 - VBOUT Partners Meeting Group
April 2024 - VBOUT Partners Meeting GroupApril 2024 - VBOUT Partners Meeting Group
April 2024 - VBOUT Partners Meeting Group
 
Google 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best StrategiesGoogle 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
 
Avoid the 2025 web accessibility rush: do not fear WCAG compliance
Avoid the 2025 web accessibility rush: do not fear WCAG complianceAvoid the 2025 web accessibility rush: do not fear WCAG compliance
Avoid the 2025 web accessibility rush: do not fear WCAG compliance
 
Branding strategies of new company .pptx
Branding strategies of new company .pptxBranding strategies of new company .pptx
Branding strategies of new company .pptx
 

Implementing schema.org in the JSON-LD format with Google Tag Manager