WPサイト内検索
ああああ
|
1 2 3 4 |
<form method="get" action="/%3C?php%20echo%20home_url(%27/%27);%20?%3E" > <input name="s" type="text"> <input type="submit"> </form> |
いいいい
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<?php echo get_search_query().'の検索結果'; if ( have_posts() ) { while ( have_posts() ) { the_post(); get_template_part( 'content', 'search' ); echo $post->title; echo $post->content; } } else { echo '該当なし'; } ?> |
うううう
