Support

Account

Home Forums Front-end Issues Displaying Sibling ACF Fields Reply To: Displaying Sibling ACF Fields

  • i was able to figure it out by using get_posts.

    
      $siblingProjects = get_posts(array('post__not_in' => array($pageId), 'showposts' => 20, 'post_parent' => $parentId, 'post_type' => 'page'));