MTCategoryCustomFields
カテゴリに関するカスタムフィールドの情報を表示するためのブロックタグです。カテゴリの編集画面に追加されたすべてのカスタムフィールドの情報を表示します。
include モディファイアを使用すると、名前を指定したカスタムフィールドのみを対象にできます。exclude モディファイアに名前を指定したカスタムフィールドは対象から除外されます。
特定のカスタムフィールドだけを表示したいときは、個別のテンプレートタグを使用してください。
- 使い方
<mt:CategoryCustomFields>
<mt:If name="__first__">
<ul>
</mt:If>
<mt:If tag="CategoryCustomFieldDescription">
<li><$mt:CategoryCustomFieldName$>: <$mt:CategoryCustomFieldDescription$></li>
</mt:If>
<mt:If name="__last__">
</ul>
</mt:If>
</mt:CategoryCustomFields>
モディファイア
- include="カスタムフィールドの名前"
指定した名前のカスタムフィールドの情報を表示します。
- exclude="カスタムフィールドの名前"
指定した名前のカスタムフィールドの情報を対象から除外します。