标签: php wordpress woocommerce shortcode
我得到了最新产品:
[recent_products]
我可以在某个类别:
[product_category category = "book"]
问题:
如何获取产品“recent_products”,不包括某个类别,例如上面的类别。
我尝试过但没有得到结果:
[recent_products per_page="10" category="book" operator="NOT IN"]
答案 0 :(得分:-1)
您可以使用query_posts。并且还请参考link query_posts( 'cat=-3' );这将是类别ID 3
query_posts
query_posts( 'cat=-3' );