此处您没有提供太多详细信息,但您也可以尝试将其添加为列表:
<?php
$params = array(\'posts_per_page\' => 5, \'post_type\' => \'product\');
$wc_query = new WP_Query($params);
?>
<ul>
<?php if ($wc_query->have_posts()) : ?>
<?php while ($wc_query->have_posts()) :
$wc_query->the_post(); ?>
<li>
<h3>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</h3>
<?php the_post_thumbnail(); ?>
<?php the_excerpt(); ?>
</li>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php else: ?>
<li>
<?php _e( \'No Products\' ); ?>
</li>
<?php endif; ?>
</ul>
更多细节将使我们能够更具体地帮助您。