If other pages are located on the same server, you can do this by downloading the wp-load.php file
First add this to the top of the page to load wp-load.php
<?php // Include WordPress define('WP_USE_THEMES', false); require('./wordpress/wp-load.php'); query_posts('showposts=1'); ?>
Then you can encode all the content with:
<?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; ?>
Checkout this link: Loop (Wordpress Codex)
source share