This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p> | |
<a href="http://npr.org">National Public Radio</a> has a sponsor: | |
<a href="http://www.example.com/GloboCorp">GloboCorp</a>. | |
</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p itemscope itemprop="organization" itemtype="http://schema.org/Organization"> | |
<a href="http://npr.org" itemprop="url"> | |
<span itemprop="name">National Public Radio</span> | |
</a> has a sponsor: | |
<span itemprop="sponsor" itemscope itemtype="http://schema.org/Organization"> | |
<a itemprop="url" href="http://www.example.com/GloboCorp"> | |
<span itemprop="name">GloboCorp</span> | |
</a> | |
</span>. | |
</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="application/ld+json"> | |
{ | |
"@context": "http://schema.org/", | |
"@type": "Organization", | |
"name": "National Public Radio", | |
"url": "http://npr.org", | |
"sponsor": | |
{ | |
"@type": "Organization", | |
"name": "GloboCorp", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2>Super Shop</h2> | |
<p>A super shop that sells everything at super low prices.</p> | |
<address> | |
123 Example Street<br/> | |
Example Town<br/> | |
Essex<br/> | |
</address> | |
Phone: <a href="tel:01234 567890">01234 567890</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div itemscope itemtype="http://schema.org/LocalBusiness"> | |
<h2><span itemprop="name">Super Shop</span></h2> | |
<p><span itemprop="description">A super shop that sells everything at super low prices.</span></p> | |
<address itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> | |
<span itemprop="streetAddress">123 Example Street</span> | |
<span itemprop="addressLocality">Example Town</span>, | |
<span itemprop="addressRegion">Essex</span> | |
</address> | |
Phone: <a href="tel:01234567890"><span itemprop="telephone">01234 567890</span></a> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="application/ld+json"> | |
{ | |
"@context": "http://schema.org", | |
"@type": "LocalBusiness", | |
"address": { | |
"@type": "PostalAddress", | |
"addressLocality": "Example Town", | |
"addressRegion": "Essex", | |
"streetAddress": "123 Example Street" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$schema = get_post_meta(get_the_ID(), 'schema', true); | |
if(!empty($schema)) { | |
echo $schema; | |
} | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="application/ld+json"> | |
{ | |
"@context": "http://schema.org", | |
"@type": "VideoObject", | |
"name": "Why Super Shop is Great", | |
"description": "Find out why Super Shop is great and all of our products are super!", | |
"thumbnailUrl": "http://www.example.com/thumbnail.jpg", | |
"uploadDate": "2016-06-05T08:00:00+08:00", | |
"duration": "PT1M33S", | |
"contentUrl": "http://www.example.com/supershop.flv", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="application/ld+json"> | |
{ | |
"@context": "http://schema.org/", | |
"@type": "Product", | |
"name": "Super Hat", | |
"image": "http://www.example.com/super-hat.jpg", | |
"description": "The best super hat ever from Super Shop.", | |
"mpn": "456321", | |
"brand": { | |
"@type": "Thing", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="application/ld+json"> | |
{ | |
"@context": "http://schema.org", | |
"@type": "VideoObject", | |
"name": "Why Super Shop is Great", | |
"description": "Find out why Super Shop is great and all of our products are super!", | |
"thumbnailUrl": "http://www.example.com/thumbnail.jpg", | |
"uploadDate": "2016-06-05T08:00:00+08:00", | |
"duration": "PT1M33S", | |
"contentUrl": "http://www.example.com/supershop.flv", |
OlderNewer