Skip to content

Instantly share code, notes, and snippets.

@brentini
Forked from ScarletPonytail/page-home.php
Last active March 23, 2018 21:44
Show Gist options
  • Select an option

  • Save brentini/95798dcaba1b4c0cee3371a0b8066df6 to your computer and use it in GitHub Desktop.

Select an option

Save brentini/95798dcaba1b4c0cee3371a0b8066df6 to your computer and use it in GitHub Desktop.
Wordpress - Add posts 'Loop' of a certain category to theme file #wordpress
<?php query_posts('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