Not a developer? Go to MovableType.com

Documentation

ActionsEntry

This template tag must be contained by the <mt:Actions> tag and will display its contents only if the current action in context is an entry. In other words, if the current action relates to a user creating an entry then this tag can then be used to output details relating to that entry using all of Movable Type’s entry 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:ActionEntry>
        <li class="entry icon-entry">
            Posted <a href="<$mt:EntryLink>"><$mt:EntryTitle encode_html="1"$></a> to 
            <a href="<$MTEntryBlogURL$>" class="icon-blog"><$MTEntryBlogName$></a>
            <div class="excerpt"><$MTEntryExcerpt$></div>
        </li>
    </mt:ActionEntry>
    <mt:ActionsFooter>
    </ul>
    </mt:ActionsFooter>
</mt:Actions>
Back