Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Last active March 30, 2017 12:32
Show Gist options
  • Select an option

  • Save ScarletPonytail/bce6a2011ffd4dea2d78a11e7fed54af to your computer and use it in GitHub Desktop.

Select an option

Save ScarletPonytail/bce6a2011ffd4dea2d78a11e7fed54af to your computer and use it in GitHub Desktop.
Wordpress - Add posts 'Loop' of a certain category to theme file
// This example will display 3 posts from category 7
<?php query_posts('showposts=3&cat=7'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="col-md-4">
<h3><?php the_title(); ?></h3>
<?php the_excerpt(__('(more…)')); ?>
<a class="btn btn-default" href="<?php the_permalink() ?>" role="button">Read More</a>
</div>
<?php endwhile; endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment