I am using this shortcode for woocommerce shop page to display products:
[recent_products per_page="100" columns="4"]
This shortcode display all 100 products in single page. How to do pagination for this page?
and my arg is:
array(
'per_page' => '100',
'columns' => '4',
'orderby' => 'date',
'order' => 'desc'
)