-
-
Save zogot/5500940 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function breadcrumbs() { | |
?> | |
<?php if ( ! is_home() ) : ?> | |
<?php global $post; ?> | |
<a href="<?php bloginfo( 'wpurl' ); ?>">Home</a> » | |
<?php | |
$parent = $post->post_parent; | |
$parent_title = get_the_title( $parent ); | |
?> | |
<a href="<?php echo get_permalink( $parent ); ?>"><?php echo $parent_title; ?></a> » | |
<?php the_title( '' ); ?> | |
<?php endif; ?> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment