我在这里建立了一个新博客https://www.storageworks.biz/blog 当我在https://www.storageworks.biz/blog/6-must-have-tips-for-moving-into-your-first-apartment/这样的单个帖子页面上,当我到底部并单击发布的链接以查看同一类别中的其他帖子时,它会向我显示所有帖子,而不仅仅是一个类别类型。< / p>
如何设置它以过滤掉结果?
我的代码如下,
<?php get_header(); ?>
<div id='page_wrapper'>
<div id='page'>
<div id='slider_wrapper' >
<?php get_sidebar(); ?>
<div id='wrapper_right'>
<div id="content">
<div id="nav-above" class="navigation">
<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">«</span> %title' ) ?></div>
<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">»</span>' ) ?></div>
</div><!-- #nav-above -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
<div class="entry">
<?php the_content(); ?>
</div>
<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php //comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
</div>
<?php //comments_template(); ?>
<?php endwhile; endif; ?>
<div id="nav-below" class="navigation">
<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">«</span> %title' ) ?></div>
<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">»</span>' ) ?></div>
</div><!-- #nav-below -->
</div>
<div style="clear:both;"></div>
</div>
<div class="clear"></div>
</div>
</div>
<div class="clear"></div>
<?php get_footer(); ?>
我正在运行worpress版本4.5.3。
我的模板部分由以下部分组成: 头 指数 单 侧边栏 页脚 功能
谢谢!