如何使用WooCommerce插件显示特定于类别的产品?[关闭]


13

我正在使用插件Woocommerce进行在线购物。

我有很多种类,例如shoesclothes等等。如何显示特定类别的产品?

我在示例页面上看到了这样的产品循环,但是我只想在我的产品中显示特定类别的产品index.php


您能否告诉我,请在哪里添加此代码
Alaa M. Jaddou

Answers:


26

您需要为此创建一个新循环。这是我用于在首页上显示特定类别产品的代码:

<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-->

1
@Vantong然后将此答案标记为答案:单击左侧的复选标记。
福夏

嗨,Dwaser,我想问更多。如果在存档页面中,我要显示所有新产品。当我选择特定类别时,它将显示该类别的产品。示例我有2个类别Category A和Category B,当我选择A时,它将显示A的乘积,选择B则将显示B的乘积。请告诉我循环。谢谢。
Van Tong

热门节目消息,如果没有产品?
穆罕默德·比拉勒

@dwaser嗨,deos product_cat参数接受一个int类别ID,即:40而不是'shoes'吗?如果没有,如何使其接受一个int类别ID?谢谢
Malloc 2014年

1
不好意思,但是在哪里添加此代码?我是wordpress的新手,但截止日期很近。@Vantong
Alaa M. Jaddou

0

还有另一种方法:

您可以将“商店”页面分配为默认主页。现在所有产品将显示在主页上。我是说index.php


-1

尝试这个

<?php
    echo $product->get_categories(
        ', ',
        '<span class="posted_in">' . _n( 'Category:', 'Categories:',
        sizeof( get_the_terms( $post->ID, 'product_cat' ) ),
        'woocommerce' ) . ' ',
        '.</span>'
    );
?>

4
您能否详细说明这将如何以及为何解决OP的问题?
Johannes Pille 2013年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.