我有一个自定义贴子类型“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”分类法中的所有项目。如果我可以使用“制造商”分类法的这些元素来显示属于这些制造商的所有“产品”的列表,那就太好了。基本上循环分类法元素,并使用这些结果循环属于这些制造商的所有产品。对不起,如果我是多余的,我只是想尽可能具体的初学者可能。谢谢大家。
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\',
);