現在、wordpress勉強中のものです。
例えば、何も表示されていないページを作成し、そこで記事のタイトル等を検索すると
それに該当する特定のコンテンツの記事がループ処理にて表示されるという表示をさせたいのです。
しかし、現在自分が書いているの、あらかじめループ処理の記事が画面上に反映されており、キーワードを
検索すると、元々反映されていた記事の該当キーワードにマーカーが引かれるというシンプルな
ものです。
そのようなやり方をブログ等で参考にしたかったのですが、どういう検索の仕方をすればいいのか分からず、
また、目当ての記事が見つかりません。何かプラグインで対処可能なのでしょうか、それともwp_queryで何かを
するということなのでしょうか。稚拙な文章ですみません。対処法を教えていただけると幸いです。
よろしくお願いいたします。
以下は自分が現在書いているsearch.phpです
<?php get_search_form(); ?> <?php if ( have_posts() ) : ?> <p><?php printf( '' . get_search_query() . '' . __( 'の検索結果 - ' ) . $wp_query->found_posts . __('件')); ?></p> <!-- post --> <section> <div class="sectionwrapper"> <ul class=" s-wrap"> <?php $args = array( 'post_type' => 'cardnews', //カスタム投稿タイプ名 ); ?> <?php $myposts = new WP_Query($args); if($myposts->have_posts()): while($myposts->have_posts()): $myposts->the_post(); $c = get_post_custom(); ?> <li class="list01"> <h3><?php the_title(); ?></h3> <div class="thumbnail"> <?php the_post_thumbnail('medium'); ?> </div> <div class="archivetext"> <p><?php the_time('Y.m.d');?></p> <p>サンプルテキスト。サンプルテキスト。サンプルテキスト。サンプルテキスト。サンプルテキスト。サンプルテキスト。</p> </div> </li> <?php endwhile; endif;?> </ul> </div> </section> <!-- /post --> <?php endif; ?>
searchform.php
<?php ?> <form id="s-form" method="get" action="<?php echo home_url( '/' ); ?>"> <input id="s-box" name="s" type="text" placeholder="キーワードを入力"/> <button type="submit" id="s-btn">検索</button> </form>
教えていただけると幸いです。よろしくお願いいたします。
あなたの回答
tips
プレビュー