我需要列出一个由这两个帖子上的两个不同分类法组织的自定义帖子类型。
我有一个自定义的帖子类型的属性/公寓,其中包含位置和类型/大小的分类我试图将它们列出来,如下所示
必需的布局
自定义帖子类型
公寓位置
公寓面积1
公寓面积2
公寓位置2
公寓面积1
公寓面积2
我正在使用当前的代码但它只是吐出每个分类法大小下的所有内容?我不能让它按位置过滤,然后按尺寸
<?php
$terms = get_terms('apartment_location');
foreach( $terms as $term ):
?>
<h2><?php echo $term->name;?></h2>
<?php
$posts = get_posts(array(
'post_type' => 'apartments',
'taxonomy' => $term->taxonomy,
'term' => $term->slug,
'nopaging' => true
)); ?>
<?php
$terms = get_terms('apartment_type');
foreach( $terms as $term ):
?>
<h3><?php echo $term->name;?></h3>
<?php
$posts = get_posts(array(
'post_type' => 'apartments',
'taxonomy' => $term->taxonomy,
'term' => $term->slug,
'nopaging' => true
)); ?>
<?php foreach($posts as $post): setup_postdata($post); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><br>
<?php wp_reset_postdata();?>
<?php endforeach; ?>
<?php endforeach; ?>
<?php wp_reset_postdata();?>
<?php endforeach; ?>