wordpress 从WP_Query循环中的产品变体获取Woocommerce产品类别

n53p2ov0  于 2022-11-22  发布在  WordPress
关注(0)|答案(1)|浏览(148)

你好,我正在尝试显示产品变体的产品类别。当我使用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(); ?>
jhkqcmku

jhkqcmku1#

Woocommerce产品变体不处理任何自定义分类法作为产品类别、产品标签甚至正常的产品属性。
相反,您需要通过以下方式获取父变量产品:

$terms = wp_get_post_terms( $loop->post->post_parent, 'product_cat' );
foreach ( $terms as $term )
    $cats_array[] = $term->term_id;

var_dump($cats_array);

您甚至可以使用以下方法使其更加紧凑和轻便:

$cats_array = wp_get_post_terms( $loop->post->post_parent, 'product_cat', array("fields" => "ids") );

var_dump($cats_array);

这一次它将适用于您的产品变体。
要使其同时适用于post_type“product”和“product_variation”,可以使用以下命令:

$the_id = $loop->post->post_parent > 0 ? $loop->post->post_parent : $loop->post->ID;

$cats_array = wp_get_post_terms( $the_id, 'product_cat', array("fields" => "ids") );

var_dump($cats_array);

如果您拥有Product变体中的WC_Product对象示例,则还可以使用WC_Productget_parent_id()方法获取父变量product ID
最后,在您的代码中,这一行是错误的,可以删除:

$post_categories = wp_get_post_categories( $loop->post->ID  );

因为wp_get_post_categories()函数是用来获取普通WordPress博客文章的类别术语的,而不是产品类别自定义分类。

相关问题