【发布时间】:2015-12-01 21:54:47
【问题描述】:
我正在使用内置的 woocommerce 类别小部件,目前它同时显示类别和子类别。
我通过此代码排除了一个类别:
add_filter( 'woocommerce_product_categories_widget_args', 'organicweb_exclude_widget_category' );
function organicweb_exclude_widget_category( $args ) {
// Enter the id of the category you want to exclude in place of '30'
$args['exclude'] = array('62' );
return $args;
}
但小部件仍显示它的子类别。
链接:http://tithaty.com.br/?post_type=product
隐藏的类别是 Coleções(我配置为父类别),我想隐藏它的子类别、当前类别和将来添加的类别。
Colecao teste 是一个子类别的例子。
有什么想法吗?
谢谢
【问题讨论】:
标签: wordpress widget woocommerce categories