Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. if( $loop->have_posts() ):
  3. while ( $loop->have_posts() ):
  4. $loop->the_post();
  5. // Do stuff for results
  6. echo '<h2>' . the_title() . '</h2>';
  7.  
  8. // Check for tag
  9. if(has_tag($tag) { output HTML if true }
  10.  
  11. endwhile;
  12. else:
  13. echo "No Results!";
  14. endif;
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement