Not a developer? Go to MovableType.com

Documentation

StreamActionModifiedDate

This functional template tag outputs the date an action was modified.   It is a part of the ActionStreams plugin for use with MT 4.25.

For example, the tag for when an entry was submitted to Vox is <mt:StreamActionDate>. The date the entry received a comment or was updated is output as <mt:StreamActionModifiedDate>.

Example:

<mt:ActionStreams lastn="15">
<mt:If name="first">
<div class="widget-recent-action widget-recent widget">
<h3 class="widget-header">15 recent actions</a></h3>
<div class="widget-content">
<ul>
</mt:If>
<li class="service-<$mt:var name="service_type"$>"><mt:StreamActionModifiedDate format="%H:%M"> - <a href="<$mt:StreamActionURL$>"><$mt:StreamActionTitle$></a></li>
<mt:If name="last">
</ul>
</div>
</div>
</mt:If>

</mt:ActionStreams>
Modifier

The modifiers compatible with this tag are the same as those compatible with the <mt:Date> function tag. 

Back