I have a structure like this:
Hyperlinks
-- Personal
---- Books
---- Websites
---- Blogs
---- and the list goes on
-- Professional
---- Account Management
---- Project Management
---- Design
---- and the list goes on
Now I need MT to generate the list of category links under Personal only (Books, Websites etc) and output it to this:
CODE
<ul>
<li><a href="<books category archive>">Books</li>
<li><a href="<website category archive>">Website</li>
<li><a href="<blogs category archive>">Blogs</li>
<li>... and the list goes on
</ul>
<li><a href="<books category archive>">Books</li>
<li><a href="<website category archive>">Website</li>
<li><a href="<blogs category archive>">Blogs</li>
<li>... and the list goes on
</ul>
I have tried MTFilterCategories plugin, problem is, I had to specify what categories to be included, which can be troublesome as I'll have to edit the code whenever I add new subcategories in future, same goes with the exclude function.
I'm just wondering: isn't there a way to make MT generate the list of subcategories under a specific main category only?
In short, I wish the following codes...
CODE
<ul>
<MTCategories show_empty="1">
<li><a href="<$MTCategoryArchiveLink$>">
<$MTCategoryLabel$></a> (<$MTCategoryCount$>)</li>
</MTCategories>
</ul>
<MTCategories show_empty="1">
<li><a href="<$MTCategoryArchiveLink$>">
<$MTCategoryLabel$></a> (<$MTCategoryCount$>)</li>
</MTCategories>
</ul>
can become this:
CODE
<ul>
<MTCategories show_empty="1" category="Personal">
<li><a href="<$MTCategoryArchiveLink$>">
<$MTCategoryLabel$></a> (<$MTCategoryCount$>)</li>
</MTCategories>
</ul>
<MTCategories show_empty="1" category="Personal">
<li><a href="<$MTCategoryArchiveLink$>">
<$MTCategoryLabel$></a> (<$MTCategoryCount$>)</li>
</MTCategories>
</ul>
Help?
