woocommerce_products_will_display()

Check if we will be showing products or not (and not sub-categories only).


Description Description


Return Return

(bool)


Top ↑

Source Source

File: includes/wc-template-functions.php

	function woocommerce_products_will_display() {
		$display_type = woocommerce_get_loop_display_mode();

		return 0 < wc_get_loop_prop( 'total', 0 ) && 'subcategories' !== $display_type;
	}


Top ↑

User Contributed Notes User Contributed Notes

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