Show Siblings or Children of a Wordpress Page

A useful code snippet I thought I’d share Related Pages post_parent){     wp_list_pages(’title_li=&include=’.$post->post_parent);     wp_list_pages(’title_li=&child_of=’.$post->post_parent);     } // If CHILD_OF is zero, this is a top level page, so list subpages only. else{     wp_list_pages(’title_li=&include=’.$post->ID);     wp_list_pages(’title_li=&child_of=’.$post->ID);     } ?>

More: continued here

No tags for this post.

Related posts


Leave a Reply