Incluir funciones básicas de WordPress
<?php
// Include WordPress
define('WP_USE_THEMES', false);
require('/server/path/to/your/wordpress/site/htdocs/blog/wp-blog-header.php');
query_posts('showposts=1');
?>
Ejecutar bucle
<?php while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
<p><a href="https://css-tricks.com/snippets/wordpress/run-a-loop-outside-of-wordpress/<?php the_permalink(); ?>" class="red">Read more...</a></p>
<?php endwhile; ?>
Esto se puede utilizar en cualquier archivo PHP incluso FUERA de su instalación de WordPress.