我使用了WooCommerce Product Categories小部件但我需要从列表中“删除”创建一些类别,我在小部件中添加选项,但不知道将它放在代码中...可以有人帮忙吗?
答案 0 :(得分:2)
昨天我试图这样做。这是我的解决方案。
在你的functions.php上添加:
function exclude_widget_categories($args){
$exclude = "25"; // The IDs of the excluding categories separated by commas.
$args["exclude"] = $exclude;
return $args;
}
add_filter("woocommerce_product_categories_widget_args","exclude_widget_categories");
我调整了我在此处找到的代码段:Exclude category from widget category list以使用woocommerce过滤器。