Skip to content

Instantly share code, notes, and snippets.

@gwixted
Created June 11, 2013 16:30
Show Gist options
  • Save gwixted/5758372 to your computer and use it in GitHub Desktop.
Save gwixted/5758372 to your computer and use it in GitHub Desktop.
Add this to the template.php file to change the separator between breadcrumbs
//REPLACE BREADCRUMBS SEPARATOR ========================================
function sndev_breadcrumb($variables) {
$sep = ' / ';
if (count($variables['breadcrumb']) > 0) {
return implode($sep, $variables['breadcrumb']);
}
else {
return t("Home");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment