Not a developer? Go to MovableType.com

Documentation

AuthorFollowers

A block tag that generates a list of all users following the user of the profile page being viewed. Template tags, such as <mt:AuthorName>, can be used to set how user information is displayed.

Usage

<h2>Five people who &heart; <$mt:AuthorName escape="html"$></h2>
<ul>
   <mt:AuthorFollowers lastn="5">
       <li><$mt:AuthorName escape="html"$></li>
   <mt:Else>
       <li>Nobody &hearts;s <$mt:AuthorName escape="html"$>.</li>
   </mt:AuthorFollowers>
</ul>

Modifiers

lastn

Displays the most recent number of users starting from a specified number. N must be greater than 0.

lastn="N"

glue

Sets the characters used to separate user information. The following example shows the use of a comma (,) as an info divider.

<mt:AuthorFollowers glue=","><$mt:AuthorName$></mt:AuthorFollowers>

Output:

Melody Nelson, Melody Nelson, Melody Nelson

Back