Advertisement
Guest User

Untitled

a guest
Jun 30th, 2011
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. if ( function_exists('register_sidebar') ) register_sidebars(2);
  2. function the_breadcrumb() {
  3. global $post;
  4. if ( !is_home() ) {
  5. echo '' . get_bloginfo('name') . '»';
  6. if ( is_category() || is_single() ) {
  7. the_category(', ');
  8. if ( is_single() ) echo '»' . get_the_title();
  9. }
  10. if ( is_page() && $post->post_parent ) echo 'post_parent' . '>' . get_the_title($post->post_parent) . '»';
  11. if ( is_page() ) the_title();
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement