feed_id($url) ;
$top_posts = $aide_rss -> top_posts($feed_id,$period,$num) ;
foreach($top_posts as $top_post){
echo '
'.$top_post['title'].' - '.$top_post['postrank'].'';
}
$aide_expire = 60 * 60 * 24; // Cache data for one day (86400 seconds)
wp_cache_set('aide'.$period.$num,$mydata, 'aide_rss', $aide_expire);
}
}
?>