【发布时间】:2017-08-13 23:36:52
【问题描述】:
我是 wordpress 的新手,我找到了显示最近产品的代码,但我不知道如何为其添加带有数字的分页。
<?php
$args = array( 'post_type' => 'product', 'stock' => 1, 'posts_per_page' => 4,'nopaging' => false, 'orderby' =>'date','order' => 'DESC' );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); global $product;
?>
<li class="span3">
<a id="id-<?php the_id(); ?>" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php if (has_post_thumbnail( $loop->post->ID )) echo get_the_post_thumbnail($loop->post->ID, 'shop_catalog'); else echo '<img src="'.woocommerce_placeholder_img_src().'" alt="Placeholder" width="65px" height="115px" />'; ?>
<h3>
<?php the_title(); ?>
</h3>
<span class="price"><?php echo $product->get_price_html(); ?></span>
</a>
<?php woocommerce_template_loop_add_to_cart( $loop->post, $product ); ?>
</li>
<!-- /span3 -->
<?php endwhile; ?>
<?php wp_reset_query(); ?>
感谢您的帮助。
【问题讨论】:
-
请帮帮我!!!。
标签: php wordpress woocommerce pagination