Blog

Archive for the ‘Snippets’ Category

How to create a sidebar navigation in Wordpress

Wednesday, February 3rd, 2010

Here’s a snippet that will give you an instant sidebar navigation in Wordpress. It grabs the post parent title and the children of that parent.

Download wordpress-sidebar-nav.txt

< ?php
$parent_title = get_the_title($post->post_parent);
$permalink = get_permalink($post->post_parent);
if($post->post_parent) {
$children = wp_list_pages('title_li=&child_of='.$post->post_parent.'&echo=0');
}
else {
$children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0');
}
?>

< ?php if ($children): ?>


< ?php endif; ?>
  • Blog Home