less than 1 minute read

Add the following to your theme, to embed an RSS feed
(another blog of yours?) to your WordPress blog:
<?php include_once(ABSPATH.WPINC.'/feed.php'); 
$rss = fetch_feed('http://example.com/rss/'); 
$maxitems = $rss->get_item_quantity(5); 
$rss_items = $rss->get_items(0, $maxitems); ?> 
<ul> 
 <?php if ($maxitems == 0) echo '<li>Empty</li>'; 
 else foreach ( $rss_items as $item ) : ?> 
 <li> <a href='<?php echo $item->get_permalink(); ?>' 
 title='<?php echo 'Posted '.$item->get_date('j F Y | g:i a'); ?>'>
 <?php echo $item->get_title(); ?></a> </li> <?php endforeach; ?> 
</ul>
Note to change the URL in the second line to the RSS feed you'd like to embed!