Extract A Post Content In Wordpress Then Put It On My Web Site Using Php And Mysql?
Hi… I’m new to wordpress and I would like to know how to extract a post content then putting it on my web site…
Hi… I’m new to wordpress and I would like to know how to extract a post content then putting it on my web site…
You can use the template tags.http://codex.wordpress.org/Template_Tags
Or, if you simply want a query that extracts a given blog’s details:
SELECT * FROM wp_posts WHERE post_id = XXXXX
Where XXXXX is the number of the post.