如何获得woocommerce中最受欢迎产品的类别列表

时间:2014-08-08 10:44:10

标签: wordpress woocommerce

如何在top 5 most popular category网站主页上列出wordpress(或最受欢迎产品的类别)。 我已经使用woocommerce插件来购买产品。

提前感谢任何建议或解决方案。

3 个答案:

答案 0 :(得分:6)

由于没有一个答案能够解决作者的问题,所以我想出了这个问题。这是一个简短的代码段,按类别列出了热门产品。通过流行,我的意思是大多数销售的产品(如总销售额)。

function bestselling_products_by_categories( $atts ){

    global $woocommerce_loop;

    extract(shortcode_atts(array(
        'cats' => '',   
        'tax' => 'product_cat', 
        'per_cat' => '5',   
        'columns' => '5',
        'include_children' => false,
        'title' => 'Popular Products',
        'link_text' => 'See all',
    ), $atts));

    if(empty($cats)){
        $terms = get_terms( 'product_cat', array('hide_empty' => true, 'fields' => 'ids'));
        $cats = implode(',', $terms);
    }

    $cats = explode(',', $cats);

    if( empty($cats) )
        return '';

    ob_start();

    foreach($cats as $cat){

        // get the product category
        $term = get_term( $cat, $tax);

        // setup query
        $args = array(
            'post_type'             => 'product',
            'post_status'           => 'publish',
            'ignore_sticky_posts'   => 1,
            'posts_per_page'        => $per_cat,            
            'meta_key'              => 'total_sales',
            'orderby'               => 'meta_value_num',
            'tax_query' => array(               
                array(
                    'taxonomy' => $tax,
                    'field' => 'id',
                    'terms' => $cat,
                    'include_children' => $include_children,
                )
            ),
            'meta_query'            => array(
                array(
                    'key'       => '_visibility',
                    'value'     => array( 'catalog', 'visible' ),
                    'compare'   => 'IN'
                )
            )
        );

        // set woocommerce columns
        $woocommerce_loop['columns'] = $columns;

        // query database
        $products = new WP_Query( $args );

        $woocommerce_loop['columns'] = $columns;

        if ( $products->have_posts() ) : ?>

            <?php if ( shortcode_exists('title') ) : ?>
                <?php echo do_shortcode('[title text="'. $title .'" link="' . get_term_link( $cat, 'product_cat' ) . '" link_text="' . $link_text . '"]'); ?>
            <?php else : ?>
                <?php echo '<h2>'. $title .'</h2>'; ?>
            <?php endif; ?>

            <?php woocommerce_product_loop_start(); ?>

                <?php while ( $products->have_posts() ) : $products->the_post(); ?>

                    <?php woocommerce_get_template_part( 'content', 'product' ); ?>

                <?php endwhile; // end of the loop. ?>

            <?php woocommerce_product_loop_end(); ?>

        <?php endif;

        wp_reset_postdata();
    }

    return '<div class="woocommerce columns-' . $columns . '">' . ob_get_clean() . '</div>';

} add_shortcode( 'custom_bestselling_product_by_categories', 'bestselling_products_by_categories' );

您可以将其命名为:

<?php echo do_shortcode('[custom_bestselling_product_by_categories cats="' . $term->term_id . '"]'); ?>

这个短代码有一些选择:

cats:用于从中检索产品的类别ID或逗号分隔ID。

tax:获取产品的分类标准,默认为product_cat

per_cat:要检索的产品数量

columns:要显示的列数

include_children:如果为false,则仅显示该类别的直接子项,如果为true,则将显示子项的子项

title:要显示的标题

link_text:链接到商店的链接文字

请注意,此代码段假设您有一个名为title的短代码,并且它需要一些其他参数,例如linklink_text参数。您可以随时根据您的主题进行更改。

希望它有所帮助。

答案 1 :(得分:1)

在许多情况下,流行可能像大多数观看,畅销。所以我通过畅销产品列出了产品。通过这种方式,您可以获得最畅销的产品,通过这种方式,您可以获得类别列表。

$query_args = array(
        'post_type' => 'product',
        'post_status' => 'publish',
        'ignore_sticky_posts' => 1,
        'posts_per_page' => '10',
        'columns' => '4',
        'fields' => 'ids',
        'meta_key' => 'total_sales',
        'orderby' => 'meta_value_num',
        'meta_query' => WC()->query->get_meta_query()
    );

    $best_sell_products_query = query_posts($query_args);
    return $best_sell_products_query;

答案 2 :(得分:0)

我建议您查看此页面。

http://docs.woothemes.com/document/woocommerce-shortcodes/

array(
     'per_page' => '12',
      'columns' => '4',
      'orderby' => 'title',
      'order' => 'asc',
      'category' => ''
 )
[product_category category="appliances"]


array(
     'per_page' => '12',
     'columns' => '4',
     'orderby' => 'title',
     'order' => 'asc'
 )

[top_rated_products per_page="12"]

或者您可以使用此插件:https://wordpress.org/plugins/sp-woocommerce-best-selling-products-by-category/