循环自定义分类以获取自定义帖子类型列表?

时间:2014-01-16 作者:bullettrain

我有一个自定义贴子类型“products”和自定义分类法“maker”,我已将其连接到该cpt“products”。我编写了以下代码:

  <?php $myproducts = new WP_Query(array(\'post_type\' => \'products\', \'maker\'=>\'samsung\')); ?>
  <?php while($myproducts->have_posts()) : $myproducts->the_post(); ?>

  <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>

  <?php endwhile; ?>
  <?php wp_reset_postdata(); ?>
这使我能够循环使用一家新增制造商(本例中为三星)的产品。我实际上想做的是创建一个页面,该页面将循环遍历客户端可能添加到其中的“maker”分类法中的所有项目。如果我可以使用“制造商”分类法的这些元素来显示属于这些制造商的所有“产品”的列表,那就太好了。基本上循环分类法元素,并使用这些结果循环属于这些制造商的所有产品。对不起,如果我是多余的,我只是想尽可能具体的初学者可能。谢谢大家。

2 个回复
SO网友:TheDeadMedic

您只需使用tax query 将所有帖子附加到任何帖子product_cat 期限:

$args = array(
    \'post_type\' => \'product\',
    \'tax_query\' => array(
        array(
            \'taxonomy\' => \'product_cat\',
            \'terms\' => get_terms( \'product_cat\', \'fields=ids\' ),
        )
    ),
    \'orderby\' => \'menu-order\',
);

SO网友:Shafi Zahid

使用此代码按类别获取产品。

<?php $args = array( \'post_type\' => \'product\',\'product_cat\' =>\'sumsung\', \'orderby\' => \'menu-order\' );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>
<?php the_post_thumbnail(); ?>
<?php the_title();?>           
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?>"></a>  
<?php endwhile;?>

结束

相关推荐

Querying Term Posts in Loop

我试图在标题下显示我的CPT类别以及与之相关的任何帖子。我有第一个循环,很好:<?php $cats = get_categories(array(\'taxonomy\' => \'custtax\', \'orderby\' => \'term_group\')); if(!empty($cats)) : foreach($cats as $cat) : ?> <a href=\"<?php