我在产品的单个产品页面中。我想在该产品之后展示 4 个其他相同类别的随机产品
我所拥有的就是这个:(PHP)
<?php
global $product;
$terms = get_the_terms( $product->get_id(), 'product_cat' );
var_dump($terms);
$args = array(
'posts_per_page' => 4,
'orderby' => 'rand',
'post_type' => 'product' );
$random_products = get_posts( $args );
foreach ( $random_products as $post ) : setup_postdata( $post ); ?>
<li>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?></a>
</li>
<?php endforeach;
wp_reset_postdata();
?>
谁能帮我?谢谢
青春有我