記事にサムネイルと登録するとして、サムネイルがない場合の記述が探しても見つけられなかったので忘れないようにメモ
サムネイルを表示させるのは <MTEntryAssets> で
上記ページにサムネイルがないとき(条件分岐)の記述がないので
サムネイルを表示させる
<mt:EntryAssets type="image" limit="1">
<figure>
<img src="<$mt:AssetThumbnailURL width="150"$>" class="thumb">
</figure>
</mt:EntryAssets>
そこににサムネイルが無いとき <mt:Else> を追加するだけ
<mt:EntryAssets type="image" limit="1">
<figure>
<img src="<$mt:AssetThumbnailURL width="150"$>" class="thumb">
</figure>
<mt:Else>
<span>サムネイルなし</span>
</mt:EntryAssets>
参考ページ : https://www.movabletype.jp/documentation/appendices/tags/entryassets.html
コメントを残す