skip to Main Content

Search WordPress Code Snippets – Quick Solutions for Developers


Modifying Products Per Page on the WooCommerce Shop Page

Adjust the number of products displayed on the shop page to improve user experience.

add_filter('loop_shop_per_page', 'codebykp_custom_products_per_page', 20);
function codebykp_custom_products_per_page() {
    return 12; // Change to your desired number of products per page
}


I’m a WordPress developer with 10+ years of experience in WooCommerce and custom plugins. I combine technical expertise with design flair to help you create standout, user-friendly websites. Let’s transform your digital presence!

Back To Top