So what I want to do is show, on one page, a listing of different entries and then group those into their respective categories. This is for a library, so what I want to do is have:
Fiction
Book name, author, date entered, something else
Book name, author, date entered, something else
Book name, author, date entered, something else
Non-Fiction
Book name, author, date entered, something else
Book name, author, date entered, something else
Book name, author, date entered, something else
Audio
Name, author, date entered, something else
Name, author, date entered, something else
Name, author, date entered, something elseAnd so on and so-forth.
Now I can manually set that up using multiple weblog tags, but that’s terribly inefficient. I could use the weblog:categories setting as well, but that doesn’t show custom weblog fields. Also - I need to have HTML at the beginning and end of each block of materials - so something like:
<div class="category">
<h2>Fiction</h2>
<p><ul><br />
<li>book and stuff here</li><br />
</ul><br />
</div>Is there a ‘best way’ to do that? I’m really trying to learn about optimizing for performance and calling the weblog tag once seems like a big win over doing it multiple times per page.
Thanks for any help!