Home › Forums › Front-end Issues › Displaying Sibling ACF Fields › Reply To: Displaying Sibling ACF Fields
Hey John,
Thanks for replying. To clarify my question, I’m currently displaying one of the child pages, and on that page I’m trying to query for the ids of all the sibling pages. I tried the following:
<?php
$pageId = $wp_query->post->ID;
$parentId = wp_get_post_parent_id( $pageId );
$query = new WP_Query( array( 'post_parent' => $parentId ) );
?>
However, in the $query object I don’t see any of the siblings nor their ids. Am I missing something?
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.