search.php | 검색 페이지

|

개요

검색 페이지를 만들 때 사용되는 페이지입니다.

폼 생성

<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() : '대체 이미지 링크'; ?>

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

클릭하여 복사