Hvordan skrive ut the_content utenfor WP?

clinton4

Medlem
Fant ut av det.

PHP:
<?php
define('WP_USE_THEMES', false);
require('wp-load.php');
query_posts('p=994');
?>

<?php while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; ?>
 
Topp