How can I list out the top 5 most popular category
(or category of most popular products) on my wordpress
site home page.
I have used woocommerce
plugin for products.
Thanks in advance for any suggestion or solution.
How can I list out the top 5 most popular category
(or category of most popular products) on my wordpress
site home page.
I have used woocommerce
plugin for products.
Thanks in advance for any suggestion or solution.
You must be logged in to post a comment.
Since none of the answers is a solution to the author’s question, here is what I came up with. This is a shortcode snippet that lists popular products by categories. By popular I mean most sold products ( as in total sales).
You can use this by calling it as:
This shortcode has some options:
cats
: the category ID or comma-separated IDs to retrieve the products from.tax
: the taxonomy to get the products from, default isproduct_cat
per_cat
: number of products to retrievecolumns
: number of columns to displayinclude_children
: if false only direct children of the category will be displayed, if true then children of children will be displayedtitle
: title to displaylink_text
: the link text linked to the storeNotice that this snippet assumes you have a shortcode named
title
and it takes a few other parameters such aslink
andlink_text
arguments. You can always change this according to your theme.Hope it helps.
I recommend you to check this page.
http://docs.woothemes.com/document/woocommerce-shortcodes/
Or you can use this plugin : https://wordpress.org/plugins/sp-woocommerce-best-selling-products-by-category/
Popular might be in many cases like most viewing, top selling. So i listed products by top selling. This way you can get top selling products and by this you can get category listing.