Support

Account

Home Forums Feature Requests Add connection fields to relationship Reply To: Add connection fields to relationship

  • There isn’t any way in WP to define something for a specific connection between 2 posts.

    This would require not one but 2 additional DB tables. The 1st table would a table holding one piece of information related to the relationship. The 2nd table would be a connector table that creates a many to many relationship. This table would have 3 columns, the first 2 columns would be the post IDs of the related posts and the 3rd columns would be the ID of the piece of information related to that relationship. Without these extra tables there is no construct within WP that allows for this complex data. The data must be stored as post meta associated with the post on one side of the relationship or the other.

    This is far beyond what is possible using WP. ACF is nothing more than a wrapper for what is already possible using WP and does not really extend it. The only thing that ACF really does is to make is possible without us needing to code the admin of everything we want to change ourselves. It works inside of the box that is provided by posts an post meta.

    The only thing that I can think of that comes close to this in WP w/ACF would be through the use 3 post types.

    Lets look that the idea in the OP. There is a post type called “projects” and a post type called “team members”. We add to this a 3rd post type called “member role” (or something like that). You populate the members, then you add a project. Then you add project roles and this is where the relationships is formed created a many to many relationship between projects and team members.