Reverse Relationships

Playa stores its relationships in the same manner that ExpressionEngine’s built-in Relationships field does. As such, Playa’s relationships work just as well with EE’s {reverse_related_entries} tag.

So let’s pretend that you have two channels, “People” and “Bands”, and you have a Playa field in the People channel called “Favorite Bands” that is related to the Bands channel. If you want to show which people have selected The Killers as one of their favorite bands from The Killers’ entry page, you could do that like so:

<h4>People who love {title}</h4>
<ul>
  {reverse_related_entries channel="people"}
    <li>{title}</li>
  {/reverse_related_entries}
</ul>