Skip to content

Instantly share code, notes, and snippets.

@RuslanHolovko
Created February 5, 2020 16:36
Show Gist options
  • Save RuslanHolovko/2e78daaa0c749e7870f95433a98064f8 to your computer and use it in GitHub Desktop.
Save RuslanHolovko/2e78daaa0c749e7870f95433a98064f8 to your computer and use it in GitHub Desktop.
schema breadcrumbs example
<ul itemscope itemtype="http://schema.org/BreadcrumbList">
<?php $index = 1; ?>
<?php foreach ($breadcrumbs as $breadcrumb) { ?>
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" itemtype="https://schema.org/Thing" itemid="<?php echo $mbreadcrumb['href']; ?>" itemscope href="<?php echo $mbreadcrumb['href']; ?>">
<span itemprop="name"><?php echo $index; ?></span>
</a>
<meta itemprop="position" content="<?php echo $index; ?>" />
</li>
<?php $index++; ?>
<?php } ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment