Skip to content
Advertisement

Filter a custom product loop to get products from a category in WooCommerce

I have this function which calls me all products type “promotion_package” in WooCommerce:

JavaScript

I would like to get only products from “vip” product category.

I tried using $product->get_categories() to find “vip” category, but it didn’t worked.

How can I show only products from “vip” category?

Advertisement

Answer

You can try has_term() conditional function for 'product_cat' procuct category taxonomy as follows:

JavaScript

It should work,

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement