Code:
function the_breadcrumb() {
if (!is_home()) {
echo '';
bloginfo('name');
echo " » ";
if (is_category() || is_single()) {
the_category('title_li=');
if (is_single()) {
echo " » ";
the_title();
}
} elseif (is_page()) {
echo the_title();
}
}
}