嘿,伙计们,我在搜索同一个问题;刚刚找到解决方案!它不涉及内容产品。php(至少在我的例子中),它涉及文件woocommerce>single product>related。PHP创建此文件的模板(如果您不知道如何覆盖WooCommerce模板study that) 并找到以下代码:
$args = apply_filters(\'woocommerce_related_products_args\', array(
\'post_type\' => \'product\',
\'ignore_sticky_posts\' => 1,
\'no_found_rows\' => 1,
\'posts_per_page\' => $posts_per_page,
\'orderby\' => $orderby,
\'post__in\' => $related
) );
你所要做的就是改变变量
$posts_per_page
要显示的相关产品数量!例如:
\'posts_per_page\' => 10,
将显示10种产品。