Not a developer? Go to MovableType.com

Documentation

EntryAdditionalCategories

This loop tag iterates over all secondary categories for the entry in context. This tag be used in an entry context (entry archive or mt:Entries loop).

<mt:EntryAdditionalCategories>
    <!-- do something -->
</mt:EntryAdditionalCategories>

This tag is similar to the mt:EntryCategories loop tag, but filters out the entry’s primary category.

Return the entry’s primary category using mt:EntryCategory.

Attributes

glue

If specified, this string is placed in between each result from the loop.

Examples

List and link to an entry’s non-primary categories:

<ul>
<mt:EntryAdditionalCategories >
        <li>
             <a href="<$mt:CategoryArchiveLink$>"><$mt:CategoryLabel$></a>
        </li>
</mt:EntryAdditionalCategories>
</ul>
Back