wordpress正面真的生锈了。
我正在使用自定义永久链接/%category%/%postname%/
以及WP No Category Base
插件,因此我的URL如下所示:http://www.url.com/parent_category/child_category/
我只有一个索引。php目前已建立,具有最基本的循环:
<?php if (have_posts()) : ?>
<?php query_posts(); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<?php the_title(); ?>
<br />
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<?php else: ?>
<?php endif;?>
问题是,所有帖子都会通过,而不仅仅是url所代表的类别中的帖子。我认为我不需要自定义查询,因为将我带到特定url的链接应该已经被带过了。我错过了什么?