假设你想要它作为“流派”分类法中的所有术语。在single Service post页面的循环中,输入以下代码:
<?php
$the_terms = get_the_terms( get_the_ID, \'genre\' );
if(isset($the_terms) && !empty($the_terms)){
foreach($the_terms as $the_term){
$the_terms_slugs[] = $the_term->slug;
}
}
$works = get_posts(array(
\'post_type\' => \'works\',
\'posts_per_page\' => 5,
\'tax_query\' => array(array(
\'taxonomy\' => \'genre\',
\'field\' => \'slug\',
\'terms\' => $the_terms_slugs
)));
//This will print the works which have the same genre as the current post
print_r($works_query);
?>
如果您只想让它成为“新手”,请告诉我,我会修改代码。