Denemekten zarar çıkmaz , daha profesyonel arkadaşlar net cevap verirler;
<h2><?php _e('Headlines from AP News'); ?></h2>

<?php // Get RSS Feed(s)

include_once(ABSPATH . WPINC . '/rss.php');

$rss = fetch_rss('http://feedadresi.com/feed/');

$maxitems = 2;

$items = array_slice($rss->items, 0, $maxitems);

?>


<ul>

<?php if (empty($items)) 
    {
        echo '<li>No items</li>';
    }

else
{
foreach ($items as $item) { ?>

<li><a href='<?php echo "$item[link]"; ?>'

title='<?php echo "$item[title]"; ?>'>

<?php echo "$item[title]"; ?>

</a></li>

<?php } }?>

</ul>