category.php
<?php
// 카테고리별 포스트를 가져오는 루프
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<article>
<?php if (has_post_thumbnail()) : ?>
<div class="post-thumbnail">
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('medium'); // 중간 크기 ?>
</a>
</div>
<?php endif; ?>
<h2><?php the_title(); ?></h2>
<div><?php the_excerpt(); ?></div>
<a href="<?php the_permalink(); ?>">더 읽기</a>
</article>
<?php endwhile;
else :
echo '<p>이 카테고리에 게시물이 없습니다.</p>';
endif;
?>
위 코드 기준으로, 카테고리를 불러오는 곳에 입력하면 썸네일을 포함한 블로그 목록을 불러옵니다.