从主页和类别页面,我的搜索表单工作得很好。尝试搜索“帖子”。
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(); ?>