WC_Widget_Brand_Nav::filter_out_cats()publicWC 1.0

Filter out all categories and not display them

Method of the class: WC_Widget_Brand_Nav{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Widget_Brand_Nav = new WC_Widget_Brand_Nav();
$WC_Widget_Brand_Nav->filter_out_cats( $cat_args );
$cat_args(array) (required)
Category arguments.

WC_Widget_Brand_Nav::filter_out_cats() code WC 9.5.1

public function filter_out_cats( $cat_args ) {
	// phpcs:ignore WordPress.Security.NonceVerification.Recommended
	if ( ! empty( $_GET['filter_product_brand'] ) ) {
		return array( 'taxonomy' => '' );
	}

	return $cat_args;
}