WP_Query在Wordpress中按类别显示帖子(在自定义帖子类型中)

时间:2015-08-12 19:07:14

标签: wordpress

嘿,我会保持简短。我想在WP循环中输出:

Support
    Category1
      -Post1
      -Post2
    Category2
      -PostA
      -PostB
      -PostC

所以我想按类别订购位于自定义帖子类型中的帖子 - support(由于类型插件而创建,链接:ujeb.se/A4zqZ)。

我有这个:

<?php
$args = array('post_type' => 'support');
$query = new WP_Query($args);

while($query -> have_posts()) : $query -> the_post(); ?>

    <p><?php the_category(); ?></p>
    <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
    <p><?php the_content(); ?></p>

<?php endwhile; ?>

我的$query存储了我的自定义帖子类型(support)中的所有必要帖子,但我有按类别显示的问题。我相信我需要某种foreach,但我无法弄明白。有什么建议吗?

/编辑/
当前显示如下:

Support, Category1
Post1
---
Support, Category2
PostA
---
Support, Category1
Post2

etc.

2 个答案:

答案 0 :(得分:3)

这是你如何做到的。你需要一个foreach循环来循环遍历类别。

<?php
$cats = get_categories();

foreach ($cats as $cat) {
$args = array(
'post_type' => 'support',
'tax_query' => array(
    array(
        'taxonomy' => 'category',
        'field'    => 'term_id',
        'terms'    => $cat->cat_ID,
        ),
    ),
);
$query = new WP_Query($args);

if ( $query->have_posts() ): ?>
    <p><?php echo $cat->cat_name ; ?></p> <?

   while($query -> have_posts()) : $query -> the_post(); ?>
      <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
      <p><?php the_content(); ?></p> <?php
   endwhile;
endif; 

// Added this now 
wp_reset_query() ; 
}

答案 1 :(得分:1)

这对我有用:

   $posts = new WP_Query(array(
        'category_name' => 'news,
        'post_status' => 'publish',
        'post_type' => 'post',
        'posts_per_page' => 6,
        ));