Kali ini infonetmu akan memberikan tip tentang cara membuat breadcrumb di wordpress tanpa plugin, adapun kelebihan memasang breadcrumb dengan cara ini yaitu kamu tidak perlu menginstall plugin terlalu banyak,karena install plugin yang berlebihan tentu akan membuat blog wordpress kamu menjadi lebih berat, caranya sebagai berikut:
- Login ke blog wordpress kamu
- Buka file single.php, bisa lewat dashboard, cpanel atau FTP.
- Cari kode yang biasa digunakan untuk menampilkan judul postingan. kode yang biasa dibuat judul postingan biasanya seperti ini <h2><?php the_title(); ?></h2> kalau tidak ketemu,ganti h2 dengan h1 karena tag heading untuk judul blog wordpress berbeda-beda juga, kalau sudah ketemu letakkan kode berikut tepat diatas kode <h2><?php the_title(); ?></h2>
<div id="infonetmubreadcrumb">
<a title="<?php _e('Go to Home', 'infonetmu'); ?>" href="<?php echo get_settings('home'); ?>/"><?php _e('Home', 'infonetmu'); ?></a>
> <?php the_category(', '); ?> > <?php the_title(); ?>
</div> - Lalu simpan.
- Tambahkan kode CSS berikut ini di file CSS yang kamu gunakan.
#infonetmubreadcrumb {
padding-left : 0px;
line-height:16px;
margin:5px
} - Lalu simpan, dan lihat hasilnya,klik pada salah satu postinganmu.
<strong>You are here: </strong>
<?php if(is_404()) { ?> 404 Page: Page not found
<?php } if(is_home()) { ?> Front Page of <b><? bloginfo('name'); ?></b> - <?php bloginfo( 'description' ); ?>
<?php } if(is_category()) { ?> Archive for the ‘<b><?php single_cat_title(); ?></b>’ Category
<?php } if(is_single()) { ?> <a href="<?php bloginfo('url'); ?>">Homepage</a> » <?php the_category(', '); ?> » <?php the_title(); ?>
<?php } if(is_tag()) { ?> Posts Tagged ‘<?php single_tag_title(); ?>’
<?php } if(is_month()) { ?> Archive for <?php the_time('F, Y'); ?>
<?php } if(is_year()) { ?> Archive for <?php the_time('Y'); ?>
<?php } if(is_search()) { ?> Search results for "<?php echo $_GET['s']; ?>"
<?php } if(is_page()) { ?> Page » <b><?php the_title(); ?></b>
<?php } if(is_author()) { ?> List of Author's posts
<?php } ?>
Tambahan:
Untuk kode pada nomor 3,kamu bisa juga meletakkan breadcrumb diatas kode <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="post">
Nah, demikian Cara Membuat Breadcrumb di Wordpress semoga berguna.
Baca juga: