WC_Brands::remove_terms_with_empty_products()
Remove terms with empty products.
Метод класса: WC_Brands{}
Хуков нет.
Возвращает
WP_Term[]
.
Использование
// private - только в коде основоного (родительского) класса $result = $this->remove_terms_with_empty_products( $terms );
- $terms(WP_Term[]) (обязательный)
- The terms array that needs to be removed of empty products.
Код WC_Brands::remove_terms_with_empty_products() WC Brands::remove terms with empty products WC 9.4.2
private function remove_terms_with_empty_products( $terms ) { return array_filter( $terms, function ( $term ) { return $term->count > 0; } ); }