Created
July 11, 2012 19:57
-
-
Save nelsonpecora/3092874 to your computer and use it in GitHub Desktop.
Wordpress Single Post on Front Page
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
| <div class="sectionTitle">The latest from "Keats' Blog":</div> | |
| <?php query_posts('showposts=1');?> | |
| <?php while (have_posts()) : the_post(); ?> | |
| <h3><a class="posttitle" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> | |
| <?php custom_the_excerpt(); ?> | |
| <h3 class="cta"><a href="<?php get_permalink($post->ID) ?>" target="_blank"><span class="readMore">Read More</span></a></h3> | |
| <?php endwhile;?> | |
| <?php wp_reset_query(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment