Not a developer? Go to MovableType.com

Documentation

ActionsComment

This template tag must be contained by the <mt:Actions> tag and will display its contents only if the current action in context is a comment. In other words, if the current action relates to a user posting a comment then this tag can then be used to output details relating to that comment using all of Movable Type’s comment tags.

Example

<mt:Actions namespace="community_pack_recommend" include_blogs="all" sort_order="descend" lastn="30">
    <mt:ActionsHeader>
    <ul class="recent-actions">
    </mt:ActionsHeader>
    <mt:ActionsComment>
        <li class="comment icon-comment">
            Commented on
            <mt:CommentEntry>
            <a href="<$mt:CommentLink$>"><$mt:EntryTitle encode_html="1"$></a>
            </mt:CommentEntry>
            <div class="excerpt"><$mt:CommentBody words="40"$>...</div>
        </li>
    </mt:ActionsComment>
    <mt:ActionsFooter>
    </ul>
    </mt:ActionsFooter>
</mt:Actions>
Back