More MT Plugins
We have installed the following plugins for Movable Type:
- Supplemental Category Tags — This plugin provides additional tags for Movable Type categories.
- Regex Plugin — This plugin allows you to define search and replace parameters for elements you produce from Movable Type templates.
- Compare Plugin — This Movable Type plugin implements a set of template tags for displaying a portion of a template conditionally, depending on the results of a comparison between values. The values compared can be literal strings or numbers, or they can be pieces of MT template code that the plugin will build and evaluate, using the result in the comparison.
Posted by Vicki at
10:07 AM
MT Category plugins
We have installed the following category plugins for Movable Type:
- MTFilterCategories — Allows for easy filtering of category listings to include or exclude certain categories. Not for MTEntries containers.
- MTCatEntries — displays entries including or excluding categories you specify. In addition to allowing you to exclude categories, CatEntries correctly displays N entries when given a lastn="N" attribute.
- MTCategoryOfArchive — This plugin can be used in a Category Archive template to give you access to the archive's category tags.
Examples
In Main Index Template
<div id="content">
<div class="blog">
<MTCatEntries exclude="Private,Drafts">
<-- your entry display code here -->
</MTCatEntries>
...
<div class="sidetitle">
Categories
</div>
<div class="side">
<MTCategories show_empty="1">
<MTFilterCategories exclude="Private|Drafts">
<a href="<$MTCategoryArchiveLink$>"><$MTCategoryLabel$></a> <br>
<$MTCategoryDescription$><br>
</MTFilterCategories>
</MTCategories>
In Category Archive Template
<div class="side">
<MTIfCategoryOfArchive>
<b><$MTCategoryLabel$></b>
</MTIfCategoryOfArchive>
<P>
<MTEntries>
<a href="<$MTEntryPermalink$>"><$MTEntryTitle$></a><br />
</MTEntries>
</div>
Posted by Vicki at
10:45 PM