검색 페이지를 만들 때 사용되는 페이지입니다.
<input type="text" id="searchform" class="" name="s" placeholder="검색"><?php if (have_posts()) :
while (have_posts()) : the_post();
?>
<div class="">
<a href="<?php the_permalink(); ?>">
<div class="" style="background-image:url('<?php echo has_post_thumbnail() ? the_post_thumbnail_url() : 'https://www.light-coding.com/wp-content/themes/documents/assets/images/thumbnail.png'; ?>')"></div>
</a>
<a href="<?php the_permalink(); ?>" class=""><?php the_title(); ?></a>
<?php the_excerpt(); ?>
</div>
<?php
endwhile;
else :
_e('카테고리가 없습니다', 'textdomain');
endif; ?>
<div class="pagination">
<?php the_posts_pagination(array(
'end_size' => 3,
'mid_size' => 3,
'prev_text' => '',
'next_text' => '',
)); ?>
</div><?php echo has_post_thumbnail() ? the_post_thumbnail_url() : '대체 이미지 링크'; ?>