我试图显示特定类别的随机产品缩略图。我现在有这个代码,但它不起作用,将显示所有产品,如何从特定的产品类别随机?
<?php
    $args = array(
    \'posts_per_page\'   => 1,
    \'orderby\'          => \'rand\',
    \'post_type\'        => \'product\' ); 
     $random_products = get_posts( $args );
     foreach ( $random_products as $post ) : setup_postdata( $post ); ?>
        <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
     <?php endforeach; 
     wp_reset_postdata();
?>