我尝试了很多东西......但是我无法在category.php中列出所有类别的帖子。即使我直接指定id,Wordpress也从未找到我的帖子(页面中没有帖子)。但是,我可以列出我的所有帖子并显示他们所属的类别。
我在 category.php
中的代码<?php get_header(); ?>
<div class="page">
<h1 class="page__title"><?php if (is_category()){
single_cat_title('');
}?></h1>
<?php
$current_cat_id = get_query_var('cat');
$args = array('cat' => $current_cat_id, 'orderby' => 'post_date', 'order' => 'DESC');
query_posts($args);
if (have_posts()) : while (have_posts()) : the_post(); ?>
<h3><?php the_title(); ?></h3>
<?php the_title();?>
<?php endwhile; else: ?>
<?php _e('No post.'); ?>
<?php endif; ?>
</div>
非常感谢你的帮助。