MTAuthorCustomFields
ユーザーのプロフィールに関するカスタムフィールドの情報を表示するためのブロックタグです。ユーザー情報の編集画面に追加された、すべてのカスタムフィールドの情報を表示します。include モディファイアに名前を指定したカスタムフィールドの情報を表示します。exclude モディファイアに名前を指定したカスタムフィールドは表示しません。特定のカスタムフィールドだけを表示したいときは、カスタムフィールド作成時に設定した専用のテンプレートタグを使用してください。
- 使い方
<mt:Authors any_type="1" need_entry="0">
<mt:If name="__first__">
<dl>
</mt:If>
<dt id="author-<$mt:AuthorID$>"><mt:If tag="AuthorURL"><a href="<$mt:AuthorURL$>"><$mt:AuthorDisplayName$></a><mt:Else><$mt:AuthorDisplayName$></mt:If></dt>
<dd>
<dl>
<mt:AuthorCustomFields>
<dt><$mt:AuthorCustomFieldName$>: <$mt:AuthorCustomFieldValue$></dt>
<dd><$mt:AuthorCustomFieldDescription$></dd>
</mt:AuthorCustomFields>
</dl>
</dd>
<mt:If name="__last__">
</dl>
</mt:If>
</mt:Authors>
モディファイア
- include="カスタムフィールドの名前"
指定した名前のカスタムフィールドの情報を表示します。
- exclude="カスタムフィールドの名前"
指定した名前のカスタムフィールドの情報を対象から除外します。