我想将woocommerce产品排列成一行,例如:
这是我的实际代码:
<div class="row">
<ul class="products text-center">
<?php
$args = array(
'post_type' => 'product',
'posts_per_page' => 8
);
$loop = new WP_Query( $args );
if ( $loop->have_posts() ) {
while ( $loop->have_posts() ) : $loop->the_post();
wc_get_template_part( 'content', 'product' );
endwhile;
} else {
echo __( 'No products found' );
}
wp_reset_postdata();
?>
</ul>
</div>
我在woocommerce文档中发现了这一点,希望有人能帮助我。