Wednesday, December 31, 2008

How to display wordpress posts outside the blog

Awesomely Easy:
http://www.corvidworks.com/articles/wordpress-content-on-other-pages

<?php
// Include Wordpress
define('WP_USE_THEMES', false);
require('./blog/wp-blog-header.php');
query_posts('showposts=1');
?>

<?php while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
<p><a href="<?php the_permalink(); ?>">Read more...</a></p>
<?php endwhile; ?>

No comments: