所以这是网站.. https://chicafriqfashion.com/和像https://chicafriqfashion.com/fabrics/这样的页面之一在页面上有产品。
我能够在底部添加分页,但它只是上一页和下一页。
我需要它来显示页码。
请帮忙。
这是开始
<?php
$args = array( 'post_type' => 'product', 'stock' => 1, 'product_cat' => 'earrings-ring', 'posts_per_page' => '12','order' => 'DESC', 'paged' => $paged );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>
这是我的分页代码
<h3>Pages:
<?php previous_posts_link( '« PREV', $loop->max_num_pages) ?>
<?php next_posts_link( 'NEXT »', $loop->max_num_pages) ?>
</h3>
</div>
<?php wp_reset_postdata(); ?>
慕桂英4014372
Smart猫小萌