MyBB Community Forums

Full Version: Add Breadcrumb to Google Search
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
ACP Home » Template Sets » Default Templates » Edit Template: showthread

Find
</head>

Replace with
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "itemListElement": [{
    "@type": "ListItem",
    "position": 1,
    "name": "{$mybb->settings['bbname']}",
    "item": "{$mybb->settings['bburl']}"
  },{
    "@type": "ListItem",
    "position": 2,
    "name": "{$forum['name']}",
    "item": "{$mybb->settings['bburl']}/forum-{$fid}.html"
  },{
    "@type": "ListItem",
    "position": 3,
    "name": "{$thread['subject']}",
    "item": "{$mybb->settings['bburl']}/thread-{$thread['tid']}.html"
  }]
}
</script>
</head>

Heart
why you add this in showthread templates ?