Created
September 28, 2015 14:47
-
-
Save flayder/5ff87c8c06229fe11803 to your computer and use it in GitHub Desktop.
Вывод товара woocommerse
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$args = array( | |
'post_type' => 'product', | |
'posts_per_page' => 6 | |
); | |
$featured_query = new WP_Query( $args ); | |
if ($featured_query->have_posts()) : | |
while ($featured_query->have_posts()) : | |
$featured_query->the_post(); | |
$product = get_product( $featured_query->post->ID ); | |
$attr = $product->get_regular_price();; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment