Advertisement
Weslei_Ramos

Untitled

Jul 22nd, 2022
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <?php
  2. // the query
  3. $the_query = new WP_Query(array(
  4. 'cat' => 14506,
  5. 'post_status' => 'publish',
  6. 'posts_per_page' => 5,
  7. ));
  8. ?>
  9.  
  10. <?php if ($the_query->have_posts()) : ?>
  11. <?php while ($the_query->have_posts()) : $the_query->the_post(); ?>
  12. <?php the_category(); ?>
  13. <?php the_title(); ?>
  14. <?php the_excerpt(); ?>
  15. <?php the_post_thumbnail(); ?>
  16. <?php the_content(); ?>
  17.  
  18. <?php endwhile; ?>
  19. <?php wp_reset_postdata(); ?>
  20.  
  21. <?php else : ?>
  22. <p><?php __('No News'); ?></p>
  23. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement