Include blog articles on non WP parts of website

Hey,

I was wondering if it is possible to display some blog articles on non-wordpress areas of a website.

For example, what i want to do is pull these blog articles:-

http://www.xinfu.com/blog/?cat=43

On this page:-

http://www.xinfu.com/china-press/

But i dont know how to do this? Is this possible?

Here are three choices:

  1. Use WordPress to power the whole website instead of just the blog. There’s no reason you can’t use it to serve the static pages as well as the blog posts on a small site like this. Then you can easily use WordPress functions to add the posts to whatever page you want.

  2. Use an RSS parser, like SimplePie, in your non-blog pages. There are usage examples in the documentation. Give it your blog’s RSS feed.

  3. Write a bit of code that selects the blog posts from your blog’s database and puts them in the page. It should only take a few lines.