Skip to content

Instantly share code, notes, and snippets.

@pedroelsner
Created August 26, 2012 17:07
Show Gist options
  • Save pedroelsner/3481701 to your computer and use it in GitHub Desktop.
Save pedroelsner/3481701 to your computer and use it in GitHub Desktop.
#3 - Full Breadcrumb
<?php
if (function_exists('show_full_breadcrumb')) show_full_breadcrumb(
array(
'labels' => array(
'local' => __('Voc&ecirc; est&aacute; aqui:'), // set FALSE to hide
'home' => __('In&iacute;cio'),
'page' => __('P&aacute;gina'),
'tag' => __('Etiqueta'),
'search' => __('Buscando'),
'author' => __('Publicado por'),
'404' => __('Error 404 &rsaquo; P&aacute;gina n&atilde;o encontrada')
),
'separator' => array(
'element' => 'span',
'class' => 'separator',
'content' => '&rsaquo;'
),
'home' => array(
'showLink' => true
)
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment