メイン ページとカテゴリ ページから、私の検索フォームは問題なく動作します。「投稿」で検索してみてください。
http://blog.papermusepress.com
それは結果をもたらします。
ただし、個々の投稿内から検索しようとすると、検索が実行されません。
ここで試してみてください: http://blog.papermusepress.com/my-second-post/そして投稿を検索してください。実際の検索は行われません
なぜこれを行うのか誰にも分かりますか?
/single.php/
<?php get_header(); ?>
<div id="main">
<div id="primary">
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div class="post-item">
<div class="title-tape">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p class="meta">Posted by <?php the_author(); ?> on <?php the_date(); ?></p>
</div><!-- end title-tape -->
<?php the_content(); ?>
</div><!-- end post-item -->
<?php endwhile; ?>
<?php else : ?>
<p>We aren't sure what you are looking for..</p>
<?php endif; ?>
<div id="comments_template">
<?php comments_template(); ?>
</div><!-- end comments_template -->
</div> <!-- end primary -->
<?php get_sidebar(); ?>
</div> <!-- end main -->
</div><!-- end wrap -->
<?php get_footer(); ?>