hmm, seems a bit unnecessary, or am I wrong about how to use magpie? I place magpie in a folder on my server, then apply a script like this:
<?php
define('MAGPIE_DIR', '/magpie/');
require_once(MAGPIE_DIR.'rss_fetch.inc');
$rss = fetch_rss( 'https://www.yoursite.com/yourfolder/atom.xml' );
//display latest blog content:
$item = $rss->items[0];
$content = $item['atom_content'];
echo "<p>Latest Blog Entry:$content</p>\n";
?>
But I dont have the atom.xml file? I guess i must edit WP to generate the atom.xml?
im sorry if im a bit unclear.. it is on the same server, but not in the wordpress it self… I want to show recent posts on my index page and I have the wordpress in folder /word/ on the same server…
davve