这是我的索引循环代码。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个帖子分为不同的类别。
当我单击/类别/类别名称时,它只列出所有帖子,而不是按类别过滤。
如果他们知道解决方案,有人能帮我吗?
谢谢
最合适的回答,由SO网友:George Pearce 整理而成
您正在覆盖随页面加载的查询(已保存到$temp)-为什么不使用随页面加载的查询:
while(have_posts()) : the_post();
// put the post here
endwhile;