i put it into a page: [php]RSSImport(10, 'http://news.google.com/news?ned=us&topic=w&output=rss');[/php]
and it doesnt work (with the plugin Allow PHP in posts and pages).
i put it into a page: [php]RSSImport(10, 'http://news.google.com/news?ned=us&topic=w&output=rss');[/php]
and it doesnt work (with the plugin Allow PHP in posts and pages).
3 things:
First, you have a shortcode, use it! [RSSImport feedurl="http://news.google.com/news?ned=us&topic=w&output=rss"]
Second, as highlighted here, the description (as of today) incorrectly states that comma (,) is the separator. Just use space ( ) instead.
Third, I had issues with URL having parameters (using the amp). I updated the function RSSImport_Shortcode() in file rssimport.php just before the $return by adding the line:
$feedurl = html_entity_decode( $feedurl );
Rgds
This topic has been closed to new replies.