Guest User

Untitled

a guest
Nov 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. $my_query = null;
  2. $my_query = new WP_Query($args);
  3. if( $my_query->have_posts() ) {
  4. while ($my_query->have_posts()) : $my_query->the_post(); ?>
  5.  
  6. <div class="faculty-post">
  7. <h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
  8. </div><!-- closes .faculty-post -->
  9. <div class="clear"></div>
  10.  
  11. <?php endwhile;
  12. } //faculty post loop ends?>
  13. <?php wp_reset_query(); // Restore global post data stomped by the_post(). ?>
Add Comment
Please, Sign In to add comment