Not a developer? Go to MovableType.com

Documentation

AuthorFollowingEntries

A block tag for displaying a list of blog entries, as well as topics, posted by the followed user. Template tags related to blog entries can be used with this tag.

Usage

<h2>Entries by people <$mt:AuthorName escape="html"$> &hearts;s</h2>
<mt:AuthorFollowingEntries>
   <h3>
       <a href="<$mt:EntryPermalink escape="html"$>">
           <$mt:EntryTitle escape="html"$>
       </a>
   </h3>
</mt:AuthorFollowingEntries>

Modifiers

lastn

Limits the result number. The lastn modifier can only process and list favorites in descending order from newest to oldest and overrides others. Even if the sort_by modifier is used to attempt to sort by title, or the sort_order modifier is used to attempt to sort in ascending order, only the latest lastn entries will be displayed in results.

20 is the default value.

lastn="50"

limit

Specifies the maximum number of entries to return. If set to auto, the value used (number of entries or days) will be automatically taken from the blog settings.

limit="50"

sort_order

Specifies how entries are ordered, with ascend for ascending order and descend for descending order. descend is the default value.

sort_order="ascend"

sort_by

Sets how blog entries are sorted.

  • authored_on (user default value)
  • title (blog entry title)
  • ping_count (number of trackbacks)
  • comment_count (number of comments)
  • author_id (author ID)
  • excerpt (excerpt)
  • created_on (creation date)
  • modified_on (edit date)
  • rate
  • score

If rate or score is specified, you must also set the corresponding value with the namespace modifier.

If Commercial Pack (Movable Type Pro) is installed, you can also sort by custom fields using the basename.

Example:

field:customfieldbasename

customfieldbasename would be replaced by the actual basename for the custom field.

Back