Lego2012
12/13/2016 - 11:42 AM

Filter the Loop

Filter the Loop

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

<!-- 
Filter which posts you want to show. This snippet is only showing “Featured.” 
-->

query_posts('showposts=5&amp;category_name=featured');

if ( have_posts() ) : while ( have_posts() ) : the_post();
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<p><?php the_content(); ?></p>
endwhile;
else: endif;

wp_reset_query();