どこかのページに以下を組み込む
|
1 |
<?php get_search_form(); ?> |
serchform.phpはなくてもおk
search.php
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<?php get_header(); while ( have_posts() ) { the_post(); echo '<hr>'; echo '<strong>'; the_title(); echo '</strong>'; echo '<br>'; the_content(); echo '<br>'; echo '<a href="/'.get_the_permalink().'">'.get_the_permalink().'</a>'; } get_footer(); ?> |

