Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // menambah breadcrums
- function get_breadcrumb() {
- echo '<a href="'.home_url().'" rel="nofollow">Home</a>';
- if (is_single()) {
- echo " » ";
- the_category(' • ');
- echo " » ";
- the_tags('');
- echo " » ";
- echo the_title();
- } elseif (is_tag()) {
- echo " » ";
- the_tags('');
- } elseif (is_category()) {
- echo " » ";
- the_category(' • ');
- } elseif (is_page()) {
- echo " » ";
- echo the_title();
- } elseif (is_search()) {
- echo " » Download » ";
- //echo '"<em>';
- echo the_search_query();
- //echo '</em>"';
- } elseif (is_author()) {
- echo " » ";
- echo get_the_author();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement