I'd like to create a link to a particular category archive in my menu bar. I have a "category listing entry" Archive template that outputs to "category/sub-category/index.html". I could just link to that particular index page, but I am looking for something a little more elegant. So if , for example, I change to "category/sub_category/index.html", the navigation won't break.
In short, I want to create a link to this archive template by referring to the actual category name.
TIA
Reported on Movable Type 4.2
There isn't any tag for loading just one category in context, but what you could do is put this in a cached module so it executes only once:
<mt:TopLevelCategories>
<mt:If tag="CategoryLabel" eq="CategoryName">
<$mt:CategoryArchiveLink$>
</mt:If>
</mt:TopLevelCategories>
Emphasis on **cached** module if you choose to use that.