我已将分类法与页面和自定义的\\u post\\u类型相关联。
当我在一个带有上述分类术语的页面上时,我需要显示一个与相同术语相关联的custom\\u post\\u类型列表。
我使用的是:
<?php
$args = array(
\'post_type\' => \'offres\', //my CPT
\'post_status\' => \'publish\',
\'tax_query\' => array(
array(
\'taxonomy\' => \'cible\', //my Custom Taxonomy
\'field\' => \'id\',
\'include_children\' => false,
)
)
);
$_query = new WP_Query($args);
if ($_query->have_posts()):
while ($_query->have_posts()):
$_query->the_post();
the_title();
endwhile;
endif;
wp_reset_query();?>
我需要从页面中获取当前的分类术语或id,如何做到这一点?