Entries tagged with “New in MT5” from Movable Type Documentation

WebsiteHasBlog

A conditional tag that returns True when the current website in the context has one or more blogs. An else tag can be used with this tags.... Continue Reading  

LockoutIPWhitelist

This configuration directive specifies a white list of IPs to exclude from the IPlockout. Use commas to specify multiple IPs. LockoutIPWhitelist 192.0.2.0,192.0.2.1... Continue Reading  

Entries tagged with “New in MT5” from MT5 Documentation

Creating and Deleting a Website

With Movable Type 5 we introduced a new 'website' concept. Now you can easily create a larger site by placing multiple blogs within a website. You can create multiple blogs within a website. The webmaster can manage the website's top... Continue Reading  

Entries tagged with “New in MT5” from Movable Type Documentation

VideoCustomFields

This container tag iterates, or loops, over the list of custom fields associated with a video type asset. See mt:EntryCustomFields for more details. <mt:VideoCustomFields> <ul> <mt:IfNonEmpty tag="CustomFieldValue"> <li><$mt:CustomFieldName$>: <$mt:CustomFieldValue$></li> </mt:IfNonEmpty> </ul> </mt:VideoCustomFields> Attributes exclude="TEXT1 TEXT2" Custom field name of the... Continue Reading  

ImageCustomFields

This container tag iterates, or loops, over the list of custom fields associated with a image type asset. See mt:EntryCustomFields for more details. <mt:ImageCustomFields> <ul> <mt:IfNonEmpty tag="CustomFieldValue"> <li><$mt:CustomFieldName$>: <$mt:CustomFieldValue$></li> </mt:IfNonEmpty> </ul> </mt:ImageCustomFields> Attributes exclude="TEXT1 TEXT2" Custom field name of the... Continue Reading  

FileCustomFields

This container tag iterates, or loops, over the list of custom fields associated with a file type asset. See mt:EntryCustomFields for more details. <mt:FileCustomFields> <ul> <mt:IfNonEmpty tag="CustomFieldValue"> <li><$mt:CustomFieldName$>: <$mt:CustomFieldValue$></li> </mt:IfNonEmpty> </ul> </mt:FileCustomFields> Attributes exclude="TEXT1 TEXT2" Custom field name of the... Continue Reading  

CommentCustomFields

This container tag iterates, or loops, over the list of custom fields associated with a comment. See mt:EntryCustomFields for more details. <mt:CommentCustomFields> <ul> <mt:IfNonEmpty tag="CustomFieldValue"> <li><$mt:CustomFieldName$>: <$mt:CustomFieldValue$></li> </mt:IfNonEmpty> </ul> </mt:CommentCustomFields> Display custom fields on the comment form You can use... Continue Reading  

BlogCustomFields

This container tag iterates, or loops, over the list of custom fields associated with a blog. See mt:EntryCustomFields for more details. : Attributes exclude="TEXT1 TEXT2" Custom field name of the field you wish to exclude from the loop. Related mt:EntryCustomFields... Continue Reading  

AudioCustomFields

This container tag iterates, or loops, over the list of custom fields associated with an audio type asset. See mt:EntryCustomFields for more details. <mt:AudioCustomFields> <ul> <mt:IfNonEmpty tag="CustomFieldValue"> <li><$mt:CustomFieldName$>: <$mt:CustomFieldValue$></li> </mt:IfNonEmpty> </ul> </mt:AudioCustomFields> Attributes exclude="TEXT1 TEXT2" Custom field name of the... Continue Reading  

CustomFieldIsRequired

A conditional tag that is true when the custom field has been configured as required.... Continue Reading  

AuthorEntryCount

The number of published entries created by the current author in context. Example <mt:Authors> <$mt:AuthorDisplayName$> <ul> <li><$mt:AuthorCommentCount$> comments</li> <li><$mt:AuthorEntriesCount$> posts</li> <li><$mt:AuthorEntryCount$> published</li> </ul> </mt:Authors>... Continue Reading  

AuthorEntriesCount

The number of entries created by the current author in context. Example <mt:Authors> <$mt:AuthorDisplayName$> <ul> <li><$mt:AuthorCommentCount$> comments</li> <li><$mt:AuthorEntriesCount$> posts</li> <li><$mt:AuthorEntryCount$> published</li> </ul> </mt:Authors>... Continue Reading  

AuthorCommentCount

The number of comments left by the current author in context. Example <mt:Authors> <$mt:AuthorDisplayName$> <ul> <li><$mt:AuthorCommentCount$> comments</li> <li><$mt:AuthorEntriesCount$> posts</li> <li><$mt:AuthorEntryCount$> published</li> </ul> </mt:Authors>... Continue Reading  

SupportDirectoryURL

Outputs the URL of the support directory. Static Support Directory of Movable Type... Continue Reading  

WebsiteThemeID

Outputs the ID of the theme currently applied to the website in context. The identifier is modified such that underscores are changed to dashes.... Continue Reading  

BlogThemeID

Outputs the ID of the theme currently applied to the blog in context. The identifier is modified such that underscores are changed to dashes.... Continue Reading  

BlogParentWebsite

Block tag to retrieve the parent website context from the child blog context. Example You can get the parent WebsiteID from the child blog template to include website templates. <mt:SetVarBlock name="website_id"><mt:BlogParentWebsite><mt:WebsiteID></mt:BlogParentWebsite></mt:SetVarBlock> <mt:Include module="website header" blog_id="$website_id">... Continue Reading  

WebsiteRelativeURL

Outputs the Site URL field of the website currently in context. If the website has the Site URL "http://www.example.com/first-website/" , this tag returns "/first-weblog/"... Continue Reading  

WebsiteHost

The host name part of the absolute URL of your website. Attributes: exclude_port (optional; default "0") Removes any specified port number if this attribute is set to true (1), otherwise it will return the hostname and port number (e.g. www.somedomain.com:8080).... Continue Reading  
Continue reading WebsiteHost.  

WebsitePingCount

The number of published TrackBack pings in the website. This template tag supports the multiblog template tags. include_websites modifier exclude_websites modifier singular="TEXT" plural="# TEXT" none="TEXT" Example <$mt:WebsitePingCount singular="1 trackback" plural="# trackbacks" none="No trackback"$> This returns "1 trackback" or "9 trackbacks"... Continue Reading