Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. $args = array(
  3. 'posts_per_page' => -1,
  4. 'post_type' => 'advanced_ads',
  5. );
  6. $the_query = new WP_Query( $args );
  7. ?>
  8. <?php if ($the_query->have_posts()) :
  9. $i = 1;
  10. while ($the_query->have_posts()) : the_post();
  11. // my other logic
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement