↧
Answer by rzetterberg for How to filter/block RSS feed items with SimplePie
SimplePie does not have built-in filtering functions (yet). However, you can selectively show only the items you wish:$feed = fetch_feed($rss_url); // specify the source feed$limit =...
View ArticleHow to filter/block RSS feed items with SimplePie
I've got a google news feed I display in my WordPress site, using the following code:$feed = fetch_feed($rss_url); // specify the source feed$limit = $feed->get_item_quantity(20); // specify number...
View Article