Hi,
I’m trying to return a list of entries broken into their top level categories. I then want to display what child category each entry belongs to within the entry. Something like the following where {child_category_name} would output the entries child categories if they exist. I also need to be able to sort these entries by there child category. Is this possible?
Thanks
{exp:channel:categories channel="people" style="linear" parent_only="yes"}
<section>
<h2>{category_name}</h2><p> <br />
<ul><br />
{exp:channel:entries category="{category_id}" dynamic="off"}<br />
<li><br />
</p><h3>{title}</h3>
<p> {child_category_name}<br />
</li><br />
{/exp:channel:entries}<br />
</ul><br />
</section><br />
{/exp:channel:categories}