ワードプレスのサイトでプラグインを使わずに「タグ」を使用した絞り込み検索がしたいです。
このサイトを参考にさせていただき進めたのですが。思うようにいかず立ち止まりました。
チェックボックスと値の間に大きな空白ができてしまい、この空白をなくすにはどうした良いのでしょうか?
searchform.php 検索フォームphp
PHP
1<form role="search" method="get" id="searchform" action="<?php echo esc_url(home_url('/')); ?>"> 2 3<h2>カテゴリー</h2> 4<?php 5$category_args = array( 6 'orderby' => 'name', 7 'order' => 'ASC', 8); 9$categories = get_terms( 'category', $category_args ); 10foreach($categories as $category) : 11?> 12<label><input type="checkbox" name="get_cats[]" value="<?php echo $category->slug; ?>"><?php echo $category->name; ?></label> 13<?php endforeach; ?> 14 15<h2>タグ</h2> 16<?php 17$post_tag_args = array( 18 'orderby' => 'name', 19 'order' => 'ASC', 20); 21$post_tags = get_terms( 'post_tag', $post_tag_args ); 22foreach($post_tags as $post_tag) : 23?> 24<label><input type="checkbox" name="get_tags[]" value="<?php echo $post_tag->slug; ?>"><?php echo $post_tag->name; ?></label> 25<?php endforeach; ?> 26 27<h2><?php _x( 'Search for:', 'label' ); ?>キーワード</h2> 28<input type="text" value="<?php echo get_search_query(); ?>" name="s" id="s" placeholder="キーワードを入力してください" /> 29 30 31<input type="submit" value="検索" /> 32</form>
何か足らない物があれば追記致しますのでよろしくお願いいたします。
CSS
1/* 検索フォーム 2---------------------------------------------------- */ 3 4.search input { 5font: 16px arial, sans-serif; 6color: #333; 7width:85%; 8padding: 10px 5px; 9} 10 11.search button { 12width: 15px; 13height: 15px; 14cursor: pointer; 15vertical-align: middle; 16border: none; 17background: url(images/search.png) no-repeat; 18} 19
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー