我有一个名为“产品”的自定义帖子类型,它有一个分类“产品类别”,它有类别1,类别2等类别,它们再次具有子类别类别1a,类别2a等。我想要的是,何时我点击类别1,它应列出子类别类别1a,类别2a等。当单击类别2a时,它应列出与该类别关联的产品。我怎样才能用wordpress实现这个目标?
<?php $taxonomy_name = 'al_product_cat';
$term_childs = get_term_children( $wp_query->get_queried_object_id(), $taxonomy_name ); //print_r($term_childs);
foreach($term_childs as $child){
$tm = get_term_by( 'id', $child, $taxonomy_name ); ?>
<div class="tax_content">
<div class="feat_thumb"></div>
<div class="feat_content">
<h2><a href="<?php echo get_term_link( $child, $taxonomy_name ); ?>"><?php echo $tm->name; ?></a></h2>
<p><?php echo $tm->description; ?> </p>
<div class="brand_logos">
<?php $terms = get_the_terms( $wp_query->get_queried_object_id(), 'brand' );
foreach($terms as $term){
?>
<img src="<?php echo z_taxonomy_image_url($term->term_id); ?>" />
<?php } ?>
</div>
</div>
<div class="clear"></div>
</div>
<?php } ?>
答案 0 :(得分:1)
您可以将WordPress Templates用于此目的。
始终将WP_Query()用于自定义帖子类型和分类。
现在在您的主题中创建一个文件,如taxonomy-al_product_cat.php
,然后在此文件中编写一些代码。
此文件适用于父,子及其子类别。
例如在taxonomy-al_product_cat.php
中<?php
get_header();
$al_cat_slug = get_queried_object()->slug;
$al_cat_name = get_queried_object()->name;
?>
<h2><?php echo $al_cat_name; ?></h2>
<?php
$al_tax_post_args = array(
'post_type' => 'Your Post Type', // Your Post type Name that You Registered
'posts_per_page' => 999,
'order' => 'ASC',
'tax_query' => array(
array(
'taxonomy' => 'al_product_cat',
'field' => 'slug',
'terms' => $al_cat_slug
)
)
);
$al_tax_post_qry = new WP_Query($al_tax_post_args);
if($al_tax_post_qry->have_posts()) :
while($al_tax_post_qry->have_posts()) :
$al_tax_post_qry->the_post();
?>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
<?php
endwhile;
endif;
get_footer();
?>
您可以从这些链接中了解tax_query()和get_queried_object()。
希望这会对你有所帮助。