你好,我正在尝试显示产品变体的产品类别。当我使用post_type=product
时,下面的代码工作并显示产品类别,但如果我使用post_type=product_variation
,则什么也不显示。
$args = array( 'post_type' => 'product_variation', 'posts_per_page' => -1, 'orderby' => 'rand' );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>
<?php
?>
<li class="product">
<a href="<?php echo get_permalink( $loop->post->ID ) ?>" title="<?php echo esc_attr($loop->post->post_title ? $loop->post->post_title : $loop->post->ID); ?>">
<?php woocommerce_show_product_sale_flash( $post, $product ); ?>
<?php if (has_post_thumbnail( $loop->post->ID )) echo get_the_post_thumbnail($loop->post->ID, 'shop_catalog'); else echo '<img src="'.woocommerce_placeholder_img_src().'" alt="Placeholder" width="300px" height="300px" />'; ?>
<h3><?php the_title(); ?></h3>
<span class="price"><?php echo $product->get_price_html(); ?></span>
<?php
$post_categories = wp_get_post_categories( $loop->post->ID );
var_dump( $post_categories);
global $post;
// get categories
$terms = wp_get_post_terms( $post->ID, 'product_cat' );
foreach ( $terms as $term ) $cats_array[] = $term->term_id;
var_dump($cats_array);
?>
</a>
</li>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
1条答案
按热度按时间jhkqcmku1#
Woocommerce产品变体不处理任何自定义分类法作为产品类别、产品标签甚至正常的产品属性。
相反,您需要通过以下方式获取父变量产品:
您甚至可以使用以下方法使其更加紧凑和轻便:
这一次它将适用于您的产品变体。
要使其同时适用于post_type“product”和“product_variation”,可以使用以下命令:
如果您拥有Product变体中的
WC_Product
对象示例,则还可以使用WC_Product
get_parent_id()
方法获取父变量product ID最后,在您的代码中,这一行是错误的,可以删除:
因为
wp_get_post_categories()
函数是用来获取普通WordPress博客文章的类别术语的,而不是产品类别自定义分类。