By Jboo on
Hi,
I have the following in my template.php but was wondering how I can edit it to nofollow all of the links in the breadcrumb?
function phptemplate_breadcrumb($breadcrumb) {
if (!empty($breadcrumb)) {
// remove the Home link
$old_home_link = array_shift($breadcrumb);
// insert the new link
array_unshift($breadcrumb, l(t(''), '<front>'));
return '<div class="breadcrumb">'. implode('', $breadcrumb) .'</div>';
}
}
Thanks to anyone that can help.
Comments
Search is your friend
http://drupal.org/search/apachesolr_search/How%20to%20add%20nofollow%20t...