woocommerce_products_will_display()
Check if we will be showing products or not (and not sub-categories only).
No Hooks.
Return
true|false
.
Usage
woocommerce_products_will_display();
woocommerce_products_will_display() woocommerce products will display code WC 9.5.1
function woocommerce_products_will_display() { $display_type = woocommerce_get_loop_display_mode(); return 0 < wc_get_loop_prop( 'total', 0 ) && 'subcategories' !== $display_type; }