25% off ProSNIPC25OFF

Set Products per Shop Page

Controls how many products are displayed per page on WooCommerce shop and archive pages via the loop_shop_per_page filter.

PHPby SnipCraft
php
<?php
if ( ! class_exists( 'WooCommerce' ) ) {
    return;
}

/**
 * Change SCSEED_PRODUCTS_PER_PAGE to the count you want.
 * This overrides the value set in WooCommerce > Settings > Products.
 */
define( 'SCSEED_PRODUCTS_PER_PAGE', 12 );

add_filter( 'loop_shop_per_page', 'scseed_products_per_page' );
function scseed_products_per_page() {
    return SCSEED_PRODUCTS_PER_PAGE;
}
#display#pagination#products#shop#woocommerce