显示wordpress类别中的所有帖子

时间:2016-05-18 19:50:46

标签: php wordpress

我正在尝试在类别存档页面上显示该类别中的所有帖子。
我使用了以下代码,但它显示了所有类别的所有帖子。

有人能帮助我吗?

<?php 
// the query
$wpb_all_query = new WP_Query(array('post_type'=>'post', 'post_status'=>'publish', 'posts_per_page'=>-1)); ?>

<?php if ( $wpb_all_query->have_posts() ) : ?>

<ul>

    <!-- the loop -->
    <?php while ( $wpb_all_query->have_posts() ) : $wpb_all_query->the_post(); ?>
        <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
    <?php endwhile; ?>
    <!-- end of the loop -->

</ul>

    <?php wp_reset_postdata(); ?>

<?php else : ?>
    <p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>

由于

1 个答案:

答案 0 :(得分:0)

您需要向WP_Query数组添加类别参数。 在&#34;类别参数&#34;中检查此参考。部分:https://codex.wordpress.org/Class_Reference/WP_Query

这样的事情应该有效:

$wpb_all_query = new WP_Query(array(
    'post_type' => 'post',
    'post_status' => 'publish',
    'posts_per_page' => -1,
    'category_name' => 'your_category_slug'
));