![дизайн](https://habrastorage.org/r/w120/files/d78/98e/58b/d7898e58b362458694db4d9589dc343c.png)
Дизайн
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 );