WP WooCommerce页面产品数量

时间:2018-04-23 09:12:58

标签: php wordpress woocommerce

我为产品创建单页。我可以在按钮之前添加数量选项"添加到卡"?

enter image description here

VUI

我尝试使用表单代码,它正常工作。但我想找到另一种方法并添加到第一个代码。这是表格的代码。

    <ul class="products-list">
    <?php
        $args = array( 'post_type' => 'product', 'posts_per_page' => 10, 'product_cat' => 'product-category', 'orderby' => 'rand' );
        $loop = new WP_Query( $args );
        while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>

                <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" />'; ?></a>
                        <h3><?php the_title(); ?></h3>
                        <span class="price"><?php echo $product->get_price_html(); ?></span>   
                        <p class="shortdescription"><?php echo $product->get_short_description();?></p>

//QUNATITY

                    <?php woocommerce_template_loop_add_to_cart( $loop->post, $product ); ?>
                </li>
    <?php endwhile; ?>
    <?php wp_reset_query(); ?>
</ul><!--/.products-->

1 个答案:

答案 0 :(得分:3)

请尝试使用此WooCommerce功能

woocommerce_quantity_input();

或者如果你想同时显示Qty文本框和addtocart按钮,还有另一个WooCommerce功能。请检查如下。

do_action('woocommerce_simple_add_to_cart');