Created
June 17, 2014 14:20
-
-
Save kalebweb/3677ce65606af1d21b2b to your computer and use it in GitHub Desktop.
Loop 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(array('category_name' => 'category', 'posts_per_page' => 5 )); ?> | |
| <?php while (have_posts()) : the_post(); ?> | |
| <article> | |
| <header> | |
| <h2><?php the_title(); ?></h2> | |
| </header> | |
| <?php if (has_post_thumbnail()) : ?> | |
| <figure> | |
| <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> | |
| <?php the_post_thumbnail(); ?> | |
| </a> | |
| </figure> | |
| <?php endif; ?> | |
| <?php echo limit_chars(get_the_excerpt(), 200); ?> | |
| <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">Leia Mais</a> | |
| </article> | |
| <?php endwhile; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment