bbpress 2.1 broke fetch_feed function
-
On some of my pages, I’m using the fetch_feed function to take the bbPress RSS feed to display the list items. After installing 2.1, none of the feeds are working anymore. Here’s the code I’m using:
get_item_quantity(3);
$items = $feed->get_items(0, $limit);
}
if ($limit == 0) echo 'The feed is either empty or unavailable.';
else foreach ($items as $item) : ?>
<a href="get_permalink(); ?>" title="get_date('j F Y @ g:i a'); ?>">get_title(); ?>get_description(), 13, 140); ?> <a href="get_permalink(); ?>">>>Any idea why it’s not working anymore?
- You must be logged in to reply to this topic.