Created
January 7, 2010 21:57
-
-
Save fleeting/271616 to your computer and use it in GitHub Desktop.
This file contains 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 global $more; | |
$temp = $wp_query; | |
$wp_query= null; | |
$wp_query = new WP_Query(); | |
$wp_query->query('showposts=1'); | |
?> | |
<?php if (have_posts()) : while ($wp_query->have_posts()) : $wp_query->the_post(); ?> | |
<?php $more = 0; ?> | |
<h4><?php the_title(); ?></h4> | |
<?php the_content_rss('', TRUE, '', 60); ?> <a href="<?php the_permalink(); ?>" title="Read More">Read More</a> | |
<?php endwhile; else: endif; ?> | |
<?php $wp_query = null; $wp_query = $temp;?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment