I have a site with a php index page, and in the directory /blog/ is a WordPress blog. Is it possible to pull the title (automatically, and linked) from the most recent post in /blog/ to /index.php? Any help is appreciated. D
yes. You need to do an sql query from your wordpress database. Something like select * from wordpress_database orderby post_date LIMIT 1 Not sure what your table columns are called though......
you could do it with an rss feed script. something like http://www.feedforall.com/free-php-script.htm should do the trick.
Thanks for the replies. I will have to look more into it, I'm not a php guru. So whatever specifics you can muster up is helpful. Mucho gracias.