Hello,
I need to show every entry that has the same “parent” related entry.
I have a weblog of shows and a weblog of reviews.
from each review page, I want to display the name of the show and all the reviews from the reviews weblog.
{exp:weblog:entries weblog="reviews" orderby="date" sort="desc" rdf="off" disable="categories|member_data|pagination|trackbacks" limit="1"}
{related_entries id="reviews_show_theatre"}
<h3>{show_title}</h3>
{/related_entries}
{/exp:weblog:entries}
<ul>{exp:weblog:entries weblog="reviews" orderby="date" sort="desc" rdf="off" disable="categories|member_data|pagination|trackbacks"}
<li><a href="{title_permalink=press/show/index}">{title}</a></li>
{/exp:weblog:entries}
</ul>
Of course, from a review page, this obviously only displays only the current review, not all of the ones related to the show.
Thanks for your help.
