我在一个自定义帖子类型中有3种不同的分类法。我想打印所有带有术语名称的帖子。
例如:
分类法1=>分类法=银行;post\\u类型=信用卡
分类法2=>分类法=联合费用;post\\u类型=信用卡
分类法3=>分类法=卡片类型;post\\u类型=信用卡
因此,我想打印所有带有术语名称的自定义帖子我可以通过输入单个分类法打印数据,但如何使用所有分类法术语打印数据
查询
$custom_terms = get_terms(\'banks\');
foreach($custom_terms as $custom_term) {
wp_reset_query();
$args = array(\'post_type\' => \'creditcards\',
\'tax_query\' => array(
array(
\'taxonomy\' => \'banks\',
\'field\' => \'slug\',
\'terms\' => $custom_term->slug,
),
),
);
$loop = new WP_Query($args);
if($loop->have_posts()) {
while($loop->have_posts()) : $loop->the_post();?
<div><?php echo $custom_term->name;?><br><?php echo the_title();?></div>
<?php endwhile;
}
}
?>
我想在post循环中得到的最终结果
taxonomy1 term,taxonomy2 term,taxonomy3 term
the title
taxonomy1 term,taxonomy2 term,taxonomy3 term
the title
taxonomy1 term,taxonomy2 term,taxonomy3 term
the title