Support

Account

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?