Previous to 1.6 I used to nest a exp:weblog:entries tag inside of exp:weblog:categories but it doesn’t appear to work any more:
Old Code:
{exp:weblog:categories weblog="{my_weblog}" category_group="3" show_empty="no" limit="1" style="linear"}
<h3>{category_name}</h3>
<p><ul><br />
{exp:weblog:entries weblog="{my_weblog}" orderby="title" category="{category_id}"}<br />
<li>{title}</li><br />
{/exp:weblog:entries}<br />
</ul></p>
<p>{/exp:weblog:categories}How can I produce the same type of output now:
Category Title #1
- Weblog Entry #1
- Weblog Entry #2
- Weblog Entry #3
Category Title #2
- Weblog Entry #1
- Weblog Entry #2
Category Title #3
- Weblog Entry #1
- Weblog Entry #2
- Weblog Entry #3
Basically the idea is I want to show articles that below to a category, just sorting the content based upon the category (another way to write it). Then each Weblog Entry is linked to the full weblog entry content.
If this requires a query I’m not sure what I should do to start?
Thank you