handle_content_type();
$new = array();
// to limit the number of posts that appear, add a number sequence like 0,5 between the brackets. This will get you 5 posts, 0,8 will get you 8, and so on...
foreach ($feed->get_items(0,7) as $item) {
// Calculate 7 days ago where 168 represents the hours, the rest is a bit of a mystery to me
$thisweek = time() - (26*168*60*60);
if ($item->get_date('U') > $thisweek) {
$new[] = $item;
}
}
foreach($new as $item) {
echo '