我想在Woocommerce商店页面的类别列表中隐藏某个产品类别。我找到并使用以下代码片段来执行此操作:
add_filter( 'get_terms', 'exclude_category', 10, 3 );
function exclude_category( $terms, $taxonomies, $args ) {
$new_terms = array();
// if a product category and on a page
if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() && is_shop() )
{
foreach ( $terms as $key => $term ) {
if ( ! in_array( $term->slug, array( 'books' ) ) ) {
$new_terms[] = $term;
}
}
$terms = $new_terms;
}
return $terms;
}
我的wp-config中有一个调试选项设置为true,所以当代码片段工作且“books”类别从列表中隐藏时,我收到以下错误:
Notice:: Trying to get property of non-object in
它指向这一行:
if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() && is_shop() )
这条线写得正确吗?或者我错过了什么?
答案 0 :(得分:4)
更新:您最好使用unset()
从数组中删除产品类别术语,这样:
add_filter( 'get_terms', 'exclude_category', 10, 3 );
function exclude_category( $terms, $taxonomies, $args ) {
$new_terms = array();
if ( is_shop() ){
foreach ( $terms as $key => $term ) {
if( is_object ( $term ) ) {
if ( 'books' == $term->slug && $term->taxonomy = 'product_cat' ) {
unset($terms[$key]);
}
}
}
}
return $terms;
}
此代码位于您的活动子主题(或主题)的function.php文件中。
经过测试并正常工作(不会抛出错误)。