Membuat Breadcrumb WordPress Tanpa Plugin

Bookmark and Share

Apa itu Breadcrumb? terasa aneh ya? hehe.. ya itu adalah salah satu elemen website. Bagaimana kalau Breadcrumb tersebut dipakai di website yang menggunakan WordPress? mudah sekali.
Cari file function.php di theme WordPress Anda, dan masukkan code dibawah ini
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();
  }
 }
}
Sedangkan untuk memunculkan Breadcrumb tersebut tinggal panggil dengan
<?php the_breadcrumb(); ?>
Dari Kode di atas akan menghasilkan tampilan seperti ini

Artikel Lain-nya

{ 0 comments... Views All / Send Comment! }

Post a Comment

You can replace this text by going to "Layout" and then "Page Elements" section. Edit " About "

Powered by Blogger.