How to display breadcrumbs in Drupal

,

Hi, below code is use for display breadcrumbs in your page
Copy and paste the below code in your template.php file
function yourthemename_breadcrumb($variables) {
$breadcrumb = $variables[‘breadcrumb’];
if (!empty($breadcrumb)) {
$crumbs = ‘
‘;
}
return $crumbs;
}

copy and paste the following code in your page.tpl.php or where you need
<?php print $breadcrumb; ?>

Related Post


Latest Post


Recent Posts Widget

Make sure to never miss a thing...

Get the latest news from the creative industry along with other creative goodies, conveniently delivered to social media.