I burning my brain to list pages horizontally like a category tree.
Example on top of single:
Main > Child Page > Gran Child page > Actual page Title
Anyone know how to make this? I dont need links to parent pages.
I burning my brain to list pages horizontally like a category tree.
Example on top of single:
Main > Child Page > Gran Child page > Actual page Title
Anyone know how to make this? I dont need links to parent pages.
Take a look at breadcrumb navigation Plugins, or one of the many Themes that incorporate breadcrumb navigation. Most should handle hierarchical Pages.
home-made page breadcrumb list:
<?php $anc = get_post_ancestors($post->ID);
if( $anc ) :
$anc = array_reverse(array_merge( array($post->ID), $anc )); //add the direct page to the list, and reverse the list
$sep = '';
foreach( $anc as $anc ) {
echo $sep . get_the_title( $anc );
$sep = ' > ';
}
endif; ?>
http://codex.wordpress.org/Function_Reference/get_post_ancestors
You must log in to post.