[insert_php]
$tag1 = ‘destacat’;
$custom_query_args = array( ‘post_type’ => ‘product’, ‘post_status’ => ‘publish’, ‘ignore_sticky_posts’ => 1, ‘order’ => ‘DESC’, ‘product_tag’ => array($tag1) );
$the_query = new WP_Query($custom_query_args);
while ( $the_query->have_posts() )
{
$the_query->the_post();
$next = get_post_meta( get_the_ID(), ‘next’, true);
$duration = get_post_meta( get_the_ID(), ‘duration’, true);
echo “
“;
the_post_thumbnail();
echo “
“;
echo “
“;
the_title();
echo “
Next Intake: “;
echo $next;
echo “
“;
echo”“;
echo”
“;
echo “
“; echo”“;
echo “
“;
}
wp_reset_query();
[/insert_php]