WebSite uses
WebSite is your domain.com. It is the only place it is supposed to be used, and by using it you get a very sweet perk in Google searches.If you have a search bar on your site, schema.org/WebSite may give you a search bar in SERP's when people google your site.
Minimal Code Example
<script type="application/ld+json">{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "Site name",
"url": "example.com",
}</script>
Advanced Code Example
<script type="application/ld+json">{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "Site name",
"url": "http://example.com",
"sameAs": ["https://facebook.com/page", "https://plus.google.com/site", "https://twitter.com/name"],
"potentialAction": {
"@type": "SearchAction",
"target": "http://example.com/pages/search_results?q={search_term}",
"query-input": "required name=search_term"
}
}</script>
The social media thing can prove to be more and more powerful for SEO, if you have people who use the pages. It shows your page is popular.
No comments:
Post a Comment