Multiple Installs Loop Problem
-
My home page and my blog have different themes so I have them using different wordpress installs. I want to have the titles of my most recent posts from my blog show up in the sidebar of my home page, but I can’t figure out how to reference it between installs. I think I basically need this:
<?php $myposts = get_posts('numberposts=5&offset=0');
foreach($myposts as $post) :?>- "><?php the_title();?>
<?php endforeach;?>but i need to to come from the rss or something of the other site.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Multiple Installs Loop Problem’ is closed to new replies.