Hi,
I have a page called home.php which has the code to display 6 recent products on Home page. Below is that code. Now we have built a new home page using the Pro builder elements. We still want to pull the recent products on this new home page. How can we achieve this?
Summary
The website is mangtum.com
Summary
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
global $product; ?>
<?php the_title(); ?>
<h3 class="price"><?php echo $product->get_price_html(); ?></h3>
<div class = "hover-button">
<?php woocommerce_template_loop_add_to_cart( $loop->post, $product ); ?>
</div>
Thank you