I have a WordPress site with multiple “Team” pages. Inside each Team page will be a handful of Bios. The Bios will be added via a Custom Post Type that uses ACF custom fields for things like Bio Title, Description, Photo, etc.
The question I have is what would be the best way to configure ACF so I have the ability to choose which Team page each Bio belongs to? Any advice would be appreciated. Thank you!
It depends in if a bio page can belong to more than one team. On the Bio page you can add a Post Object or Relationship field for the Team. Or you can put a Relationship field on the Team to select team members. There is some information here https://www.advancedcustomfields.com/resources/querying-relationship-fields/.
You might also create a 2 way relationship by using this as and example https://github.com/Hube2/acf-filters-and-functions/blob/master/acf-reciprocal-relationship.php or you could use this https://github.com/Hube2/acf-post2post. There are also some additional 2 way relationship fields for ACF if you do a search for them.
Thank you for the detailed response; this gives me plenty to dig into and try. Also, to answer your question, Bios will only belong to one Team page.