カテゴリーをサムネにする

<?php if(have_posts()): while(have_posts()):the_post(); ?>
<ul>
<li>
<?php if( has_post_thumbnail() ): ?>
<a href="<?php the_permalink(); ?>" ><?php the_post_thumbnail('array(200,150)'); ?></a>
<?php else: ?>
<a href="<?php the_permalink(); ?>" ><img src="<?php echo get_template_directory_uri(); ?>/images/no-image.png" ></a>
<?php endif; ?>
<!--アイキャッチ画像End-->
<div class="caption"><a href="<?php the_permalink(); ?>"><?php echo mb_substr( $post->post_title, 0, 10) . '...'; ?></a></div>
</li>
</ul>
<?php endwhile; endif; ?>
.listpost img{width:200px;height:123px;}

勉強させて貰ったサイト

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です