content_copy コードをクリップボードにコピー
<?php if(isset($_GET['quickview'])): ?>
  <?php
    $keyword = $_GET['s'];
    $args = array(
        'post_type' => array('post','custon_post'), // 検索するページ属性
        'paged' => 1,
        'posts_per_page'=> 3,              // 表示する件数
        's' => $keyword,
        'orderby'=>'date'
      );
    $custom_query = new WP_Query( $args );
    if ($custom_query->have_posts()) :
  ?>
  <p><?php echo $wp_query->found_posts; ?>件見つかりました。</p>
    <?php while ($custom_query->have_posts() ): $custom_query->the_post();?>
      <article>
        <!-- アイキャッチ画像 -->
        <?php if(has_post_thumbnail()): ?>
          <a href="<?php the_permalink(); ?>">
            <img src="<?php the_post_thumbnail_url( 'medium' ); ?>" alt="<?php the_title()?>"/>
          </a>
        <?php endif; ?>
        <!-- 記事タイトル -->
        <h2><a href="<?php the_permalink(); ?>"><?php the_title()?></a></h2>
      </article>
    <?php endwhile; ?>
  <?php else: ?>
    <p>検索結果が見つかりません。</p>
  <?php endif; ?>
<?php else: ?>
  <!-- 通常の検索結果画面 -->
<?php endif; ?>
arrow_circle_up