Created
November 30, 2015 23:13
-
-
Save eltondev/cd13ce33e18476115b24 to your computer and use it in GitHub Desktop.
Produtos em destaque
This file contains hidden or 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
$args = array( | |
'post_type' => 'product', | |
'meta_key' => '_featured', | |
'meta_value' => 'yes', | |
'posts_per_page' => 1 | |
); | |
$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 ); | |
// Aqui as informações sobre o produto | |
endwhile; | |
endif; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment