php 在woocommerce展示销售产品

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在woocommerce展示销售产品相关的知识,希望对你有一定的参考价值。

<?php
        $args = array(
            'post_type'      => 'product',
            'posts_per_page' => 4,
            'meta_query'     => array(
                'relation' => 'OR',
                array( // Simple products type
                    'key'           => '_sale_price',
                    'value'         => 0,
                    'compare'       => '>',
                    'type'          => 'numeric'
                ),
                array( // Variable products type
                    'key'           => '_min_variation_sale_price',
                    'value'         => 0,
                    'compare'       => '>',
                    'type'          => 'numeric'
                )
            )
        );
        $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();
        ?>

以上是关于php 在woocommerce展示销售产品的主要内容,如果未能解决你的问题,请参考以下文章

如何改变WooCommerce的商品列表样式

Woocommerce商店展示类别

php [WooCommerce Brands]在管理面板上展示了前端的品牌

php 在XL WooCommerce销售触发插件的UNCODE主题中更改WooCommerce单一产品位置

php 在XL WooCommerce销售触发插件的Float主题中更改WooCommerce单一产品位置

php 更改WooCommerce单个产品在WOWMALL主题中的位置,用于XL WooCommerce销售触发插件