Skip to content

Instantly share code, notes, and snippets.

@nelsonpecora
Created July 11, 2012 19:57
Show Gist options
  • Select an option

  • Save nelsonpecora/3092874 to your computer and use it in GitHub Desktop.

Select an option

Save nelsonpecora/3092874 to your computer and use it in GitHub Desktop.
Wordpress Single Post on Front Page
<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