我试图显示woocommerce的所有产品链接(7000多个),但这样做时,我得到了一个空白结果。当我设置\'posts_per_page\'
到2000,它将返回一个结果。2000多个返回空白页
<?php if ( is_woocommerce_activated() ): ?>
<h3><?php _e( \'Product Categories\', \'woothemes\' ) ?></h3>
<ul>
<?php wp_list_categories( \'taxonomy=product_cat&pad_counts=1&title_li=\' ); ?>
</ul>
<h3><?php _e( \'Products\', \'woothemes\' ); ?></h3>
<ul>
<?php
$args = array( \'post_type\' => \'product\',\'posts_per_page\' => -1 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php endif; ?>