Created
June 7, 2012 09:53
-
-
Save Riaan-ZA/2887922 to your computer and use it in GitHub Desktop.
Drupal 7: Breadcumbs with image sperator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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