Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php $args = array(
  2. 'post_type' => 'product',
  3. 'post_status' => 'publish',
  4. 'meta_query' => array(
  5. array(
  6. 'key' => '_visibility',
  7. 'value' => 'visible',
  8. 'compare' => 'IN'
  9. )
  10. ),
  11. 'posts_per_page' => 20);
  12.  
  13. $loop = new WP_Query( $args );
  14. while ( $loop->have_posts() ) : $loop->the_post(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement