Cara Membuat atau memasang breadcrumb di wordpress self hosting memang gampang-susah, kalau ingin yang lebih mudah tentunya kamu bisa install plugin-plugin untuk breadcrumb navigasi pada blog wordpress,namun walau dengan bantuan plugin kita terkadang harus edit sendiri secara manual di file php-nya agar plugin tersebut baru muncul.
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:
Sekarang di postinganmu sudah ada breadcrumbnya, ingat,itu hanya pada postingan atau single post, lalu bagaimana jika pada halaman lain seperti page,kategori ataupun halaman tag? iya, tentu belum muncul, nih aku kasih kode2 untuk halaman lainya juga,silahkan pasang juga.<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>#infonetmubreadcrumb {
padding-left : 0px;
line-height:16px;
margin:5px
}<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:
Cara Membuat Breadcrumb di Wordpress
Labels:
Wordpress
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment