Typically, you want to place the following into your active theme’s header.php file (though this may be different depending on the theme you are using):
<?php if(function_exists('bcn_display')):?>
<div class="breadcrumbs" typeof="BreadcrumbList" vocab="https://schema.org/">
<?php bcn_display();?>
</div>
<?php endif; ?>
As for the exact location within your theme’s header.php, look for an area under the main header, but above the start of main content block.
If you do not feel comfortable editing theme files, you can use the included Breadcrumb Widget to insert breadcrumb trails into any of your theme’s sidebars.
-
This reply was modified 8 years, 7 months ago by
John Havlik.