类别档案显示的是所有帖子,而不是特定类别

时间:2013-05-10 作者:gteh

这是我的索引循环代码。php。我没有存档或类别。php现在。这是非常基本的。

$temp = $wp_query;
global $wp_query;    
$wp_query = new WP_Query();

$wp_query->query(\'posts_per_page=20\'.\'&paged=\'.$paged);
while ($wp_query->have_posts()) : $wp_query->the_post();
我有大约10个帖子分为不同的类别。

当我单击/类别/类别名称时,它只列出所有帖子,而不是按类别过滤。

如果他们知道解决方案,有人能帮我吗?

谢谢

1 个回复
最合适的回答,由SO网友:George Pearce 整理而成

您正在覆盖随页面加载的查询(已保存到$temp)-为什么不使用随页面加载的查询:

while(have_posts()) : the_post();

// put the post here

endwhile;

结束

相关推荐

Categories sorting

我正在使用下面的代码来弹出自定义帖子类型及其类别,所以类别1---岗位1---岗位2第二类——岗位1——岗位2——岗位3等。这对我来说很好,但是我希望能够按count对我的类别进行排序,所以orderby=count,这样,在我下面的代码中不起作用的时候,具有大量帖子的类别将排在列表的顶部,知道为什么吗?非常感谢您的帮助 <?php // List posts by the terms for a custom taxonomy of any post type