There must be a simple way to do this, but I may not be seeing it. I want to list entries by Month and then by each entry. I tried the following code:
{exp:channel:month_links channel="links" limit="6"}
<div class="month">
<h3>{month} {year}</h3>
<p><ul class="group"><br />
{exp:channel:entries channel="links" status="Open" orderby="date" disable="member_data|pagination"}<br />
<li><a href="http://{link_url}class=web"><span>{title}</span> {entry_date format="%d"}</a></li><br />
{/exp:channel:entries}<br />
</ul></p>
<p></div></p>
<p>{/exp:channel:month_links}And I get this:
As you can see, each entry is repeated as the month parameter is looped. Is there a way to limit the entries to their relevant month without resorting to manually creating parent/child relationships?