function my_posts_per_page( $query ) {
if ( is_admin() || ! $query->is_main_query() ) {
return;
}
if ( is_shop() || is_product_category() || is_product_tag() ) {
$query->set( 'posts_per_page', 9 );
}
}
add_action( 'pre_get_posts', 'my_posts_per_page' );