AuthorFollowingComments
A block tag that lists all comments posted by a followed user. Comment related template tags can be used with this tag.
Usage
<h2>Comments by people <$mt:AuthorName escape="html"$> ♥s</h2>
<ul>
<mt:AuthorFollowingComments>
<li>
"<$mt:CommentBody words="40"$>..."
by <$mt:CommentAuthorName escape="html"$>
<mt:CommentEntry>
on <a href="<$mt:EntryPermalink escape="html"$>">
<$mt:EntryTitle escape="html"$>
</a>
</mt:CommentEntry>
</li>
</mt:AuthorFollowingComments>
</ul>
Modifiers
lastn
Limits the result number. The lastn
modifier can only process and list results in descending order from newest to oldest.
20
is the default value if no value is assigned.
lastn="10"
limit
Specifies the maximum number of results displayed.
If set to auto
, the value used (number of entries or days) will be automatically taken from the blog settings.
limit="999"
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"