I have a photolog that is structured by categories. I use a subcategory (Thumbnails) to pull one photo from each grouping to appear on an index page.
The code that generates my index template is:
CODE
<MTEntries category="Thumbnails">
<div class="gallery">
<div class="thumbnail">
<a href="<$MTEntryLink Archive_type="Category"$>">
<img src="<$MTEntryLink Archive_type="Category"$>/../<$MTEntryTitle$>s.jpg">
</a>
</div>
<div class="phototitle">
<a href="<$MTEntryLink Archive_type="Category"$>">
<$MTEntryMore$>
</a>
</div>
<div class="photodescription">
<$MTEntryExcerpt$>
</div>
</div>
<br clear="all" />
</MTEntries>
I'm trying to include a entry count for each category on this page, so the title block might say "San Francisco 2001 [34]", where 34 represents the number of piuctures in the category San Francisco.
I tried replacing the <$MTEntryMore$> tag with <$MTEntryMore$> [<$MTBlogEntryCount$>] and I get "San Francisco 2001 [284]" (the total count for all the photos in all categories.
I tried replacing the <$MTEntryMore$> tag with <$MTEntryMore$> [
<$MTArchiveCount$>] and I get "San Francisco 2001 [0]".
I tried replacing the <$MTEntryMore$> tag with <$MTEntryMore$> [
<$MTCategoryCount$>] and I get "San Francisco 2001 [34151567101230496611210]" (each category seperated).
Any ideas? This is (or in my mind, should be) such a trivial matter, but it's really throwing me.
Jason