Excerpts from 3 different blogs on one non-WP site
-
My main site (non-WP) links to three different WP blogs. I want to port the excerpt of the latest post from each blog to my home page (main, non-WP site). I’m using this code:
<?php // Include WordPress define('WP_USE_THEMES', false); require('./blogname/wp-blog-header.php'); query_posts('showposts=1');?>
which works fine for an excerpt from one blog. When I include an excerpt from a different blog, changing the blogname in the code accordingly, one excerpt shows up in both places.
Take a look here: https://www.turfnet.com/index_WPexcerpt.php
The same excerpt is showing up in both places, even though the code has been changed.
What do I need to change to show excerpts from three different blogs on this one page?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Excerpts from 3 different blogs on one non-WP site’ is closed to new replies.