Change the number of products displayed per page in WooCommerce
This code snippet changes the number of products displayed per page in the WooCommerce shop. In this case, the number of products is set to 12.
PHP
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 12;' ), 20 );
Snippet Feedback
Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.
SHARED BY