Advertisement
salmancreation

Run Loop on Posts of Specific Category | Wordpress Dev

Aug 7th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. Run Loop on Posts of Specific Category
  2.  
  3. <?php query_posts('cat=5'); ?>
  4. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  5.    <?php the_content(); ?>
  6. <?php endwhile; endif; ?>
  7.  
  8. If you were to use this, for example, in a left sidebar which ran before the main loop on your page, remember to reset the query or it will upset that main loop.
  9.  
  10. <?php wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement