Breadcrumbs showing Parent and Child Pages
idk about working it back into your breadcrumbs… which by nature i think are hierarchical. but this should give you a list of the pages that have the same parent as the page you are on (aka its siblings) albeit in a totally unstyled way global $post; $args = array(‘child_of’ => $post->post_parent, ‘exclude’=> $post->ID); if … Read more