ユーザー名 パスワード ログイン情報を記憶 パスワード紛失
永らくありがとうございました › フォーラム › 使い方全般 › 拡張ブロックにアイキャッチ画像をループ表示させる › Re: 拡張ブロックにアイキャッチ画像をループ表示させる
副ループでは$post->IDが使えないようです。
<code>$postid = get_the_ID();</code>
で$postidにIDを取得して、$post->IDの代わりに$postidを使ってください。
それとget_the_post_thumbnail()のほうは
get_the_post_thumbnail($postid,array(60,60))
でも
get_the_post_thumbnail(null,array(60,60))
でもOKでした。