php 在woocommerce中添加最新添加的产品
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在woocommerce中添加最新添加的产品相关的知识,希望对你有一定的参考价值。
<!-- the newest added products -->
<div class="container">
<div class="card-checkout">
<div class="card-checkout">
<h2 class="text-muted text-center">جدیدترین محصولات</h2>
</div>
<div class="row">
<?php
$args = array( 'post_type' => 'product', 'stock' => 1, 'posts_per_page' => 8, 'orderby' =>'date','order' => 'DESC' );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
global $product;
$currency = get_woocommerce_currency_symbol();
$price = get_post_meta( get_the_ID(), '_regular_price', true);
$sale = get_post_meta( get_the_ID(), '_sale_price', true);
?>
<div id="custom-queries-mouse-hover" class="col-xs-3 col-md-3 col-lg-3">
<div class="card-profile card-plain">
<a id="id-<?php the_id(); ?>" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<div class="col-lg-12">
<?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" />';
?>
</div>
<div class="col-lg-12">
<div class="content">
<h6 class="card-title margin-top-30 text-center"><?php the_title(); ?></h6>
<?php if($sale) : ?>
<h6 class="category text-muted text-center"><del><?php echo $price; echo $currency; ?></del> <?php echo $sale; echo $currency; ?></h6>
<?php elseif($price) : ?>
<h6 class="category text-muted text-center"><?php echo $price; echo $currency; ?></h6>
<?php endif; ?>
<div class="footer">
<?php woocommerce_template_loop_add_to_cart( $loop->post, $product ); ?>
</div>
</div>
</div>
</a>
</div>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</div>
</div>
</div>
<!-- end of the newest added products -->
以上是关于php 在woocommerce中添加最新添加的产品的主要内容,如果未能解决你的问题,请参考以下文章
WooCommerce - 使用永久链接和 html 显示来自特定父级的产品子类别
php 此功能将产品添加到woocommerce购物车中
php 在WooCommerce结帐付款之前添加自定义通知
如何将自定义挂钩添加到 Woocommerce 的自定义插件
php WooCommerce:在购物车页面上添加继续购物按钮
php 在WooCommerce通知上添加密送电子邮件