답변:
이를 위해 새로운 루프를 만들어야합니다. 홈페이지에 특정 카테고리의 제품을 표시하는 데 사용하는 코드는 다음과 같습니다.
<ul class="products">
<?php
$args = array( 'post_type' => 'product', 'posts_per_page' => 1, 'product_cat' => 'shoes', 'orderby' => 'rand' );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>
<h2>Shoes</h2>
<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>
</a>
<?php woocommerce_template_loop_add_to_cart( $loop->post, $product ); ?>
</li>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</ul><!--/.products-->
다른 방법이 있습니다.
"Shop"페이지를 기본 홈 페이지로 지정할 수 있습니다. 이제 모든 제품이 홈페이지에 표시됩니다. 내 말은 index.php
.
이 시도
<?php
echo $product->get_categories(
', ',
'<span class="posted_in">' . _n( 'Category:', 'Categories:',
sizeof( get_the_terms( $post->ID, 'product_cat' ) ),
'woocommerce' ) . ' ',
'.</span>'
);
?>