万一有人像我一样遇到麻烦,我会解决的!
$taxonomy_1 = get_terms( \'taxonomy_1\', $args_1 );
$taxonomy_2 = get_terms( \'taxonomy_2\', $args_2 );
foreach( $taxonomy_1 as $tax_1 ) {
foreach( $taxonomy_2 as $tax_2 ) {
$posts = get_posts(
array(
\'posts_per_page\' => -1,
\'post_type\' => \'ENTER-YOUR-CPT\',
\'order\' => \'ASC\',
\'orderby\' => \'title\',
\'taxonomy\' => $tax_2->taxonomy,
\'term\' => $tax_2->slug,
)
);
foreach( $posts as $post ) {
setup_postdata( $post );
// ENTER YOUR OWN LOOP the_title(), the_permalink(), etc.
}
}
}
就我而言,
$taxonomy_1
是我的信(参考信)和
$taxonomy_2
是我的类型(medium\\u参考)。
同样在这个方法中,它根据两个$tax_2->
中的行get_posts()
.