jfarsen
8/9/2017 - 1:40 AM

Increase the number of products displayed in WooCommerce

Increase the number of products displayed in WooCommerce

<?php

/* Display 250 products per page. Goes in functions.php */
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 250;' ), 20 );