Add pagination for shop page on woocommerce

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?

Read More

and my arg is:

array(
     'per_page' => '100',
      'columns' => '4',
      'orderby' => 'date',
      'order' => 'desc'
)

Related posts

Leave a Reply