/ Published in: PHP
List your WordPress posts on a non-WordPress website
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php $how_many=1; //how many posts to display require('blog1/wp-config.php'); //the path to the wp-config file of the blog I want to use $news=$wpdb->get_results("SELECT 'ID','post_title','post_content' FROM $wpdb->posts WHERE 'post_type'=\"post\" AND 'post_status'=\"publish\" ORDER BY post_date DESC LIMIT $how_many"); foreach($news as $np){ printf ("<div class='normalText'>%s</div>", $np->post_content); }?>
URL: http://www.wprecipes.com/how-to-list-recent-post-on-a-non-wordpress-site