php 隐藏产品类别侧栏小部件中的类别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 隐藏产品类别侧栏小部件中的类别相关的知识,希望对你有一定的参考价值。
function exclude_woocommerce_widget_product_categories($widget_args) {
//Insert excluded category ids here
$excludes = array(43);
$includes = explode(",",$widget_args['include']);
$includes = array_filter($includes, function($value) use ($excludes) {
return !in_array($value, $excludes);
});
$widget_args["include"] = implode(",", $includes);
return $widget_args;
}
add_filter( 'woocommerce_product_categories_widget_dropdown_args', 'exclude_woocommerce_widget_product_categories');
add_filter( 'woocommerce_product_categories_widget_args', 'exclude_woocommerce_widget_product_categories');
以上是关于php 隐藏产品类别侧栏小部件中的类别的主要内容,如果未能解决你的问题,请参考以下文章
从产品类别中排除最近查看的产品小部件中的 Woocommerce 产品
php 隐藏WooCommerce中的产品类别。如果要在商店页面上隐藏产品类别计数,则只需将此代码添加到t
php [WooCommerce Core]隐藏产品档案中的子类别产品计数
php [WooCommerce Core]隐藏产品档案中的子类别产品计数
php 隐藏WooCommerce产品类别
按产品类别列出的产品标签 - 标签不可点击或链接