En el functions:
// Insertar Breadcrumb
function the_breadcrumb() {
if (!is_home()) {
echo '<a href="';
echo get_option('home');
echo '">';
echo 'Inicio';
echo "</a> » ";
if (is_category() || is_single()) {
the_category('title_li=');
if (is_single()) {
echo " » ";
the_title();
}
} elseif (is_page()) {
echo the_title();
}
}
}
// fin breadcrumb
y se agregan así:
<?php the_breadcrumb(); ?>