Skip to content

Instantly share code, notes, and snippets.

@pedroelsner
Created August 26, 2012 16:54
Show Gist options
  • Save pedroelsner/3481629 to your computer and use it in GitHub Desktop.
Save pedroelsner/3481629 to your computer and use it in GitHub Desktop.
#2 - Full Breadcrumb
<?php
if (function_exists('show_full_breadcrumb')) show_full_breadcrumb(
array(
'labels' => array(
'local' => __('You are here:'), // set FALSE to hide
'home' => __('Home'),
'page' => __('Page'),
'tag' => __('Tag'),
'search' => __('Searching for'),
'author' => __('Published by'),
'404' => __('Error 404 &rsaquo; Page not found')
),
'separator' => array(
'element' => 'span',
'class' => 'separator',
'content' => '&rsaquo;'
),
'local' => array(
'element' => 'span',
'class' => 'local'
),
'home' => array(
'showLink' => false,
'showBreadcrumb' => true
)
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment