Not a developer? Go to MovableType.com

Documentation

AuthorFollowingFavorites

A block tag for displaying the generated list of favorite entries of users the author follows.

Usage

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

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 amount of filtered entries.

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 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