Flexi Casino

Custom breadcrumb

Florian's picture

This is how did I get the active term to appear in breadcrumbs trail. I used the following code in the SoftChannels template.php file:


<?php
function phptemplate_breadcrumb($breadcrumb) {
if (!empty($breadcrumb)) {
$breadcrumb[] = drupal_get_title();
return '<div class="breadcrumb">'. implode(' | ', $breadcrumb) . ' </div>';
}
}
?>

The only difference from the original code is that I have used "$breadcrumb[] = drupal_get_title();" to call the title in breadcrumbs.