Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. function test_breadcrumbs() {
  2. if(!is_front_page()) {
  3. echo '<nav class="breadcrumb">';
  4. echo '<a href="'.home_url('/').'">Home</a><span class="divider">/</span>';
  5. if (is_category() || is_single()) {
  6. the_category(' <span class="divider">/</span> ');
  7. if (is_single()) {
  8. echo ' <span class="divider">/</span> ';
  9. the_title();
  10. }
  11. } elseif (is_page()) {
  12. echo the_title();
  13. }
  14. echo '</nav>';
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement