我有这个查询来获取帖子并显示如下:
Custom taxonomy 1
<div ID1>
|-- post 1
|-- post 2
</div>
Custom taxonomy 2
<div ID2>
|-- post 3
|-- post 4
</div>
现在,我需要获取每个部分的当前分类ID并插入到<;部门ID>. 如何请求(&A);是否在此代码中回显ID?<?php
$taxid = get_the_terms( $post->ID , get_cat_slug() );
if($taxid) {
foreach( $taxid as $xid ) {
echo $xid->term_id;
}
}
// for a given post type, return all
$post_type = get_post_type();
$tax = get_cat_slug();
$tax_terms = get_terms(
$tax, array(
\'hide_empty\' => 1,
\'orderby\' => \'name\',
\'order\' => \'ASC\',
));
if ($tax_terms) {
foreach ($tax_terms as $tax_term) {
$args = array(
\'post_type\' => $post_type,
"$tax" => $tax_term->slug,
\'post_status\' => \'publish\',
\'caller_get_posts\' => 1,
); // END $args
$my_query = null;
$my_query = new WP_Query($args);
if ($my_query->have_posts()) { ?>
<div id="ID"> <!-- I need ID insert here -->
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<!-- I need ID insert in HTML here -->
<?php endwhile; ?>
</div>
<?php } // END if have_posts loop
wp_reset_query();
} // END foreach $tax_terms
} // END if $tax_terms
?>
非常感谢你