MovableType.net 逆引き辞典

アイテムのカスタムフィールドの値を表示するブロックタグ

ブロックタグ

MT共通

<mt:CustomFieldAsset>

アイテム(ファイル、画像、ビデオ、オーディオ)のカスタムフィールドでの値を表示するブロックタグです。
identifer モディファイアでカスタムフィールドの識別子を指定して使用します。
ブロックの内部では mt:AssetURL などのアイテム用のタグが利用できます。

タグリストのページ:<mt:CustomFieldAsset>

モディファイア

値を利用するカスタムフィールドの識別子を指定

identifer="識別子"

記述・出力サンプル

記述

<strong>■記事の画像カスタムフィールド「image」の画像URLを表示</strong>
<mt:Entries>
	<p><mt:CustomFieldAsset identifier="image"><mt:AssetURL /></mt:CustomFieldAsset></p>
</mt:Entries>

<strong>■記事の画像カスタムフィールド「image」の画像を表示</strong>
<mt:Entries>
	<p><mt:CustomFieldAsset identifier="image">
		<img src="<mt:AssetURL />" width="200">
	</mt:CustomFieldAsset></p>
</mt:Entries>

出力

サンプルサイト設定上でのテンプレート出力サンプルです。

■記事の画像カスタムフィールド「image」の画像URLを表示

https://develop.movabletype.io/publishsample/.assets/movabletypenet-square-fulllogo.png

■記事の画像カスタムフィールド「image」の画像を表示

関連ページ