Use the following code to print the breadcrumbs of the current page.
<?php print theme('breadcrumb', array('breadcrumb' => drupal_get_breadcrumb())); ?>
Done =)
Reference: StackOverflow – Get $breadcrumb variable in toolbar.tpl.php – Drupal 7
Use the following code to print the breadcrumbs of the current page.
<?php print theme('breadcrumb', array('breadcrumb' => drupal_get_breadcrumb())); ?>
Done =)
Reference: StackOverflow – Get $breadcrumb variable in toolbar.tpl.php – Drupal 7
The Custom Breadcrumbs module allows you to define the breadcrumbs for different node types, pages, views, taxonomy and even any specific path.
Download the Custom Breadcrumbs 2 (6.x-2.x) and enable it as follow. Continue reading Drupal – Custom Breadcrumbs
If you want to override the default breadcrumb HTML output, you can add the following theme_breadcrumb() function in the template.php under your current theme folder.
The following piece of code is an example which add a class for the current breadcrumb. Continue reading Drupal – Theme the Breadcrumb