我需要一次在产品类别页面上显示100个产品,如果有100个可用。
如果你没有100种产品该怎么办<或者你只是想展示一下all 产品?
无论如何,您可以尝试更改查询参数(特别是这里的posts_per_page
参数)仅在产品类别页面上。
您可以使用WooCommerce挂钩来完成此操作。
add_action( \'woocommerce_product_query\', \'my_custom_query_code\' );
function my_custom_query_code( $query ){
// only on product category pages, no other archives
if ( is_product_category() ) {
$limit = \'100\'; // the number of products
// set the new "posts_per_page" parameter
$query->set( \'posts_per_page\', $limit );
}
}