Created
August 26, 2012 17:07
-
-
Save pedroelsner/3481701 to your computer and use it in GitHub Desktop.
#3 - 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' => __('Você está aqui:'), // set FALSE to hide | |
'home' => __('Início'), | |
'page' => __('Página'), | |
'tag' => __('Etiqueta'), | |
'search' => __('Buscando'), | |
'author' => __('Publicado por'), | |
'404' => __('Error 404 › Página não encontrada') | |
), | |
'separator' => array( | |
'element' => 'span', | |
'class' => 'separator', | |
'content' => '›' | |
), | |
'home' => array( | |
'showLink' => true | |
) | |
) | |
); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment