Not a developer? Go to MovableType.com

Documentation

EntryLinkURL

This template tag outputs the URL object of a URL post. This is different than the <MTEntryPermalink>, which outputs the URL of the post itself.

This template tag is related to the custom fields that are automatically generated when you use Motion template sets. It can only be used with blogs created with Motion template sets.



Example:

<mt:Entries>
<mt:EntriesHeader>
<ul>
</mt:EntriesHeader>
<$mt:EntryPostType setvar="posttype"$>
<li>
<mt:If name="entry
type" eq="photo">
<$mt:EntryPhoto$>
</mt:If>
<mt:If name="entrytype" eq="link">
<$mt:EntryLinkURL$>
</mt:If>
<mt:If name="entry
type" eq="embed">
<$mt:EntryEmbedCode$>
</mt:If>
<mt:If name="entry_type" eq="audio">
<$mt:EntryAudio$>
</mt:If>
</li>
<mt:EntriesFooter>
</ul>
</mt:EntriesFooter>

</mt:Entries>



Back