Breadcrumbs for views, taxonomy pages, and basic pages on Drupal 7
Submitted by Arlen Vargas on Mon, 12/12/2011 - 12:47pm
In Drupal 6, there were a couple of handy modules to set your breadcrumbs throughout your website. My Drupal 6 techniques have a combination of modules, code on tpl.php files and views.
Drupal 6 Breadcrumbs:
- Menu Trails
- Custom Breadcrumbs
- Taxonomy Breadcrumbs
- Views > Header section (PHP code)
<?php
global $base_url;
$breadcrumb[] = l('Home', null);
$breadcrumb[] .= l('Blog', 'blog');
drupal_set_breadcrumb($breadcrumb);
?>
Breadcrumbs in Drupal 7 are similar but I found myself working around the lack of Taxonomy Breadcrumbs for version 7. I downloaded Menu Breadcrumbs to replace Taxonomy Breadcrumbs’ functionality. The configuration was straightforward. See image below:
Blog Tags
Monthly archive
Recent comments
No comments available.


Add new comment