w 商业产品图书馆的数量和违约商店页数 Can
我的所有产品都显示350多种产品,但商店网页上只展示270种产品,迄今为止还没有找到解决办法。
我试图利用ook光功能重塑和展示所有展览,但似乎没有任何效果。 使用q子盘问产品也显示270
$args = array(
post_type => product ,
post_status => publish ,
posts_per_page => -1, // all product
);
$products = new WP_Query( $args );
$i=0;
if ( $products->have_posts() ) {
while ( $products->have_posts() ) {
$products->the_post();
$i++;
}
echo Product—sum: .$i;
}
function show_all_products_on_shop_page($query) {
if (is_admin() || ! $query->is_main_query()) {
return;
}
if (is_shop()) {
$query->set( posts_per_page , -1);
}
}
add_action( pre_get_posts , show_all_products_on_shop_page );
Using the above two methods does not seem to workenter image description here enter image description here