Plugin Author
jp2112
(@jp2112)
Sorry about that. I tried it on my site and got an error as well. Can you try it with a different feed and see if it works at all?
Plugin Author
jp2112
(@jp2112)
Do you still need help with this?
Thread Starter
rpvp
(@rpvp)
I ended up using a different plugin.
Plugin Author
jp2112
(@jp2112)
OK. Can you let me know which one? I’d like to see how they are doing it so I could improve my plugin.
Plugin Author
jp2112
(@jp2112)
I looked at that plugin. Does it even work? It still uses fetch_rss which has been deprecated since WordPress 2.8.
The feed you are trying to pull doesn’t validate (http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fwww.mydesert.com%2Fapps%2Fpbcs.dll%2Fsection%3Fcategory%3DRSS06%26template%3Drss_gd_re), that may be why my plugin doesn’t work.
Thread Starter
rpvp
(@rpvp)
Yes, working fine — updating posts, etc.
Does the opennewwindow functionality work?
As in:
'opennewwindow' => true,
I can’t get this to work.
Plugin Author
jp2112
(@jp2112)
I just checked version 1.3.7 on my site and it works. Please show the exact code you are using. Thx
I noticed the 1.3.7 upgrade showed up last night in my install of WP. I upgraded and that now works. Now, if I increase my feeds beyond 4, I get weird results. Like about 8 or 9 feeds.
Code pretty straight forward – see below:
<?php
if (function_exists('jp_get_rss_feed_items')) {
jp_get_rss_feed_items(array(
'url' => "http://feedurl.com/page.rss",
'numitems' => 4,
'nofollow' => true,
'cssclass' => 'myclass',
'getdesc' => false,
'opennewwindow' => true,
'show' => true
));
}
?>
Plugin Author
jp2112
(@jp2112)
Sorry, I’m not understanding you. Are you saying that when you call the plugin with more than four different feeds, you get results from 8 or 9 feeds?