List recent post on a non-WordPress site


/ Published in: PHP
Save to your folder(s)

List your WordPress posts on a non-WordPress website


Copy this code and paste it in your HTML
  1. <?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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.