Skip to content

Instantly share code, notes, and snippets.

@Clorith
Created May 2, 2013 08:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Clorith/5500932 to your computer and use it in GitHub Desktop.
Save Clorith/5500932 to your computer and use it in GitHub Desktop.
<?php
function breadcrumbs() {
if( ! is_home() ){
global $post;
?>
<a href="<?php bloginfo( 'wpurl' ); ?>">Home</a> &raquo;
<?php $parent = $post->post_parent;
$parent_title = get_the_title( $parent );
echo '<a href="'.get_permalink( $parent ) .'">' . $parent_title . ( '' ); ?> </a> &raquo;
<?php the_title( '' ); ?>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment