Created
August 26, 2012 16:54
-
-
Save pedroelsner/3481629 to your computer and use it in GitHub Desktop.
#2 - Full Breadcrumb
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
<?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 › Page not found') | |
), | |
'separator' => array( | |
'element' => 'span', | |
'class' => 'separator', | |
'content' => '›' | |
), | |
'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