我在我的主题上使用 woocommerce,它带有一个product_cat
术语作为商店产品的默认类别。我需要在每个product_cat
档案中显示其直接子项和子项,而不是子项子项。
我试过了:
<?php $thispage = $wp_query->post; wp_list_categories("taxonomy=product_cat&term=". $term->slug."&title_li=&child_of=".$thispage->slug);?>
它返回所有product_cat
作为 ul 和存档 im in 的子项,但不返回存档的子项。
我试过了:
global $post;
$terms = get_the_terms( $post->ID, 'product_cat');
foreach ( $terms as $term )
$currentID = get_the_ID();
$args=array(
'taxonomy'=>'product_cat',
'term' => $term->slug,
'child_of'=>$currentID
);
$my_query = new WP_Query( $args );
?>
<?php if ( $my_query->have_posts() ): ?>
<?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
<li> <a href="<?php the_permalink(); ?>" id="booklink"><?php the_title();?></a></li>
<?php endwhile; ?>
<?php endif; ?>
它返回所有当前存档的子项和子项子项,而没有子项本身。
所以我尝试了:
$term_id = $terms;
$taxonomy_name = 'product_cat';
$termchildren = get_term_children( $term_id, $taxonomy_name );
echo '<ul>';
foreach ( $termchildren as $child ) {
$term = get_term_by( 'id', $child, $taxonomy_name );
echo '<li><a href="' . get_term_link( $term->name, $taxonomy_name ) . '">' . $term->name . '</a></li>';
}
echo '</ul>';
它什么也没返回。
有个主意...如果这仅返回子项:
wp_list_categories( array('child_of' => get_queried_object_id(),'taxonomy' => 'product_cat','title_li' => '','depth' => 1, 'show_option_none'=> ''));
也许我可以在查询 args 中 exacude 它的所有子项,然后调用 wp_list_categories。试过:
$terms = get_the_terms( $post->ID, 'product_cat'); foreach ( $terms as $term ) $currentID = get_the_ID(); $args=array( 'taxonomy'=>'product_cat', 'term' => $term->slug, 'exclude '=> array('child_of' => get_queried_object_id()) ); $my_query = new WP_Query( $args );?>
但它只返回 sub-term 孩子,而不是 prost_cat 孩子......
任何人?
我无语了。有人有线索吗?
*对不起我糟糕的英语