wordpressで任意の大きさにトリミングしたサムネイルを表示するテンプレートタグ
<?php while (have_posts()) : the_post(); ?> /*サムネイルがある場合*/ <?php if (has_post_thumbnail()):?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail(array(120,120)); ?><br /><span class="yarpp-thumbnail-title"><?php the_title(); ?></span></a></li> <?php endif; ?> /*サムネイルがない場合場合*/ <?php if (!has_post_thumbnail()):?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><img src="代替画像指定" width="120" height="120" alt="<?php the_title(); ?>" /><br /><span class="yarpp-thumbnail-title"><?php the_title(); ?></span></a></li> <?php endif; ?> <?php endwhile; ?>