Not a developer? Go to MovableType.com

Documentation

StreamActionThumbnailURL

This functional template tag outputs thumbnails for photos and movies in an action.  Not all services are compatible and items from incompatible services will not be output.

This template tag is a part of ActionStreams and MT 4.25 and above.

Example:

<mt:ActionStreams>
<mt:DateHeader>
<div>
<h3><$mt:StreamActionDate format="%b %d, %Y"$></h3>
<ul>
</mt:DateHeader>
<li class="service-<$mt:var name="service_type"$>">
<mt:StreamActionDate format="%H:%M"> - <$MTStreamAction$>
<mt:If tag="StreamActionThumbnailURL">
<div class="picture">
<img alt="<$mt:StreamActionTitle$> Image Title" src="<$mt:StreamActionThumbnailURL$>"/>
</div>
</mt:If>
</li>
<mt:DateFooter>
</ul>
</div>
</mt:DateFooter>
</mt:ActionStreams>
 

Back