MTBlogCustomFields
「ブログ」システムオブジェクトで作成したカスタムフィールドを一覧で表示するブロックタグです。作成したすべてのカスタムフィールドを表示します。include モディファイアでは、指定したカスタムフィールドのみを表示します。exclude モディファイアに名前を指定したカスタムフィールドは表示しません。特定のカスタムフィールドだけを表示したいときは、個別のテンプレートタグを使用してください。
- 使い方
<mt:Blogs>
<mt:If name="__first__">
<dl>
</mt:If>
<dt><$mt:BlogName$></dt>
<dd>
<div><$mt:BlogDescription$></div>
<ul>
<li>記事数: <$mt:BlogEntryCount$></li>
<li>ウェブページ数: <$mt:BlogPageCount$></li>
<li>カテゴリ数: <$mt:BlogCategoryCount$></li>
<li>コメント数: <$mt:BlogCommentCount$></li>
<li>使用言語: <$mt:BlogLanguage$></li>
<mt:BlogCustomFields>
<mt:If tag="BlogCustomFieldValue">
<li><$mt:BlogCustomFieldName$>: <$mt:BlogCustomFieldValue$>
<div><$mt:BlogCustomFieldDescription$></div>
</li>
</mt:If>
</mt:BlogCustomFields>
</ul>
</dd>
<mt:If name="__last__">
</dl>
</mt:If>
</mt:Blogs>
モディファイア
- include="カスタムフィールドの名前"
指定した名前のカスタムフィールドの情報を表示します。カンマで区切ることで複数指定できます。
- exclude="カスタムフィールドの名前"
指定した名前のカスタムフィールドの情報を対象から除外します。カンマで区切ることで複数指定できます。