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