Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. news
  2. news
  3.  
  4. <?php
  5. $galleryPosts = new WP_Query(array(
  6. 'post_type' => 'post',
  7. 'order' => 'ASC'
  8. ));
  9. ?>
  10. <?php if ( $galleryPosts->have_posts() ) : ?>
  11. <?php while ( $galleryPosts->have_posts() ) : $galleryPosts->the_post(); ?>
  12. <?php if(!has_post_format('gallery')) {
  13. the_category();
  14. }
  15.  
  16. ?>
  17. <?php endwhile; ?>
  18. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement