Guest User

Untitled

a guest
Dec 15th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. function the_breadcrumb() {
  2.     if (!is_home()) {
  3.         echo '<a href="';
  4.         echo get_option('home');
  5.         echo '">Home';
  6.         echo "</a> &raquo; ";
  7.         if (is_category() || is_single()) {
  8.             the_category('title_li=');
  9.             if (is_single()) {
  10.                 echo " &raquo; ";
  11.                 the_title();
  12.             }
  13.         } elseif (is_page()) {
  14.             echo the_title();
  15.         }
  16.     }
  17. }
Add Comment
Please, Sign In to add comment