Advertisement
Mihalytch

Untitled

Oct 23rd, 2013
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2. $args = array(
  3.     'post_type' => 'my-product',
  4. );
  5. $the_query = new WP_Query($args);
  6. while ($the_query->have_posts()) : $the_query->the_post();
  7.     the_title();
  8. endwhile;
  9.  
  10. wp_reset_postdata();
  11. wp_reset_query();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement