function the_breadcrumb() {
if (!is_home()) {
echo '<a href="';
echo get_option('home');
echo '">';
bloginfo('name');
echo "</a> / ";
if (is_category() || is_single()) {
the_category(', ');
if (is_single()) {
echo " / ";
the_title();
}
} elseif (is_page()) {
echo the_title();
}
}
}
if (!is_home()) {
echo '<a href="';
echo get_option('home');
echo '">';
bloginfo('name');
echo "</a> / ";
if (is_category() || is_single()) {
the_category(', ');
if (is_single()) {
echo " / ";
the_title();
}
} elseif (is_page()) {
echo the_title();
}
}
}
Untuk memanggilnya gunakan kode berikut:
<?php the_breadcrumb(); ?>
NB: untuk theme wordpress, cari file 'function.php'
Sekian, semoga bermanfaat ##