Skip to content

Instantly share code, notes, and snippets.

@Riaan-ZA
Created June 7, 2012 09:53
Show Gist options
  • Save Riaan-ZA/2887922 to your computer and use it in GitHub Desktop.
Save Riaan-ZA/2887922 to your computer and use it in GitHub Desktop.
Drupal 7: Breadcumbs with image sperator
function oilcouncil_breadcrumb($variables) {
$breadcrumb = $variables['breadcrumb'];
if (!empty($breadcrumb)) {
return '<div class="breadcrumb">'. implode('<img src="' . base_path() . path_to_theme() . '/images/img_breadcrumb_sep.gif" />', $breadcrumb) .'</div>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment