Skip to content

Instantly share code, notes, and snippets.

@vrej
Last active August 29, 2015 14:02
Show Gist options
  • Save vrej/63a18294fc0738cf0320 to your computer and use it in GitHub Desktop.
Save vrej/63a18294fc0738cf0320 to your computer and use it in GitHub Desktop.
<?php if ( have_posts() ) {
while ( have_posts() ) : the_post(); ?>
<?php echo $product->get_title(); ?> <?php echo $product->get_regular_price(); ?>
<?php
?>
<?php endwhile;
} else {
echo __( 'No products found' );
}
wp_reset_postdata();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment