Skip to content

Instantly share code, notes, and snippets.

@kanlukasz
Forked from woogists/wc-sample-products-loop.php
Created November 24, 2021 08:11
Show Gist options
  • Select an option

  • Save kanlukasz/4cf9bf5a357f15cb66a8c0eb5c58137c to your computer and use it in GitHub Desktop.

Select an option

Save kanlukasz/4cf9bf5a357f15cb66a8c0eb5c58137c to your computer and use it in GitHub Desktop.

Revisions

  1. @woogists woogists revised this gist May 11, 2018. No changes.
  2. @woogists woogists revised this gist Mar 12, 2018. No changes.
  3. @woogists woogists created this gist Mar 11, 2018.
    17 changes: 17 additions & 0 deletions wc-sample-products-loop.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    <ul class="products">
    <?php
    $args = array(
    'post_type' => 'product',
    'posts_per_page' => 12
    );
    $loop = new WP_Query( $args );
    if ( $loop->have_posts() ) {
    while ( $loop->have_posts() ) : $loop->the_post();
    wc_get_template_part( 'content', 'product' );
    endwhile;
    } else {
    echo __( 'No products found' );
    }
    wp_reset_postdata();
    ?>
    </ul><!--/.products-->