Last active
March 30, 2017 12:32
-
-
Save ScarletPonytail/bce6a2011ffd4dea2d78a11e7fed54af to your computer and use it in GitHub Desktop.
Wordpress - Add posts 'Loop' of a certain category to theme file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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