Breadcrumb Navigation
Breadcrumb navigation can be very beneficial to your visitors as it leads a trail of links back to the homepage so they don’t have to keep continually using their browser navigation. An example of breadcrumb navigation is shown above and it’s very easy to do.
This tutorial works on the basis that you use WordPress pages.
1. First download the breadcrumb navigation plugin from here, unzip it and upload it to your plugins folder.
2. Activate the plugin. You should already have a pagetemplate.php on your theme for your WordPress pages. If you do not, make a file called page.php.
3. Paste this code below where you want your navigation to appear. You can edit this to your liking later.
<div class="breadcrumb">
<?php
if (class_exists('breadcrumb_navigation_xt')) {
// new breadcrumb object
$mybreadcrumb = new breadcrumb_navigation_xt;
// Apply options
$mybreadcrumb->opt['static_frontpage'] = true;
$mybreadcrumb->opt['title_home'] = 'Home';
$mybreadcrumb->opt['separator'] = ' » ';
// Display the breadcrumb
$mybreadcrumb->display();
}
?>
</div> <!-- [breadcrumb] -->
Your navigation will then turn out like mine above.






