Product_Archive::filter_choices()

Summary

No summary available.

Source

File: src/BigCommerce/Customizer/Sections/Product_Archive.php

	public static function filter_choices() {
		$choices = [
			self::FILTER_CATEGORY => __( 'Categories', 'bigcommerce' ),
			self::FILTER_BRAND    => __( 'Brands', 'bigcommerce' ),
		];

		/**
		 * Filter the filtering options available in the BigCommerce catalog
		 *
		 * @param array $choices The filtering options to use
		 */
		return apply_filters( 'bigcommerce/product/archive/filter_options', $choices );
	}


User Contributed Notes

You must log in before being able to contribute a note or feedback.