Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. $args = array( 'post_type' => 'ADS', 'posts_per_page' => 10, 'orderby' => 'rand' );
  2. $loop = new WP_Query( $args );
  3. while ( $loop->have_posts() ) : $loop->the_post();
  4. the_title();
  5. echo '<div class="entry-content">';
  6. the_content();
  7. echo '</div>';
  8. endwhile;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement