Дизайн
1
Вклад в тег
add_filter( 'loop_shop_per_page', function ( $cols ) {
// $cols contains the current number of products per page based on the value stored on Options -> Reading
// Return the number of products you wanna show per page.
return 9;
}, 20 );
add_filter('loop_shop_per_page', create_function('$cols', 'return 90;'));
add_filter( 'loop_shop_per_page', function ( $cols ) {
// $cols contains the current number of products per page based on the value stored on Options -> Reading
// Return the number of products you wanna show per page.
return 90;
}, 90 );