出力したいカスタム画像サイズがあるので、次のことを試しました:
{profile_logo:thumbnail wrap="image"}
しかし、理想的ではない高さと幅が得られないので、試しました:
{profile_logo}
<img src="{url:thumbnail}" alt="{title}" width="{width}" height="{height}" />
{/profile_logo}
ただし、これは元のファイルの幅と高さを出力するため、残されている唯一のオプションは、理想的ではない高さと幅をハードコーディングすることです
{profile_logo}
<img src="{url:thumbnail}" alt="{title}" width="80" height="52" />
{/profile_logo}
サムネイルの高さと幅を動的に出力する方法はありますか? {width:thumbnail} を試しましたが、うまくいきません。
乾杯!