mcollier
Forum Replies Created
-
Forum: Plugins
In reply to: [RSSImport] Feed sorted by datePerhaps my issue is specific to my WordPress 3.7.1 install.
My research has determined that the SimplePie class defaults to a reverse chronological order sort as documented here:
http://simplepie.org/api/class-SimplePie.htmlenable_order_by_date( boolean $enable = true )I then determined that the SimplePie object is created in wp-includes/feed.php
The parameters for the SimplePie object are specified in the function ‘fetch_feed’.
I added:
$feed->enable_order_by_date(false);My feed was immediately displayed in the desired chronological order.
Now that I have made this code modification, changing the sort order in my yahoo pipe does in fact change the order displayed on my site.
Forum: Plugins
In reply to: [RSSImport] Feed sorted by dateHello Frank,
I have reversed the sort order of my yahoo feed. It is now set to descending in the pipe. I am seeing no change in the displayed feed on my website. I believe I have also been able to clear the simplepie cache as well just to be sure.
Forum: Plugins
In reply to: [RSSImport] Using "Before Items" field, in widget, causes display problemHello!
this page documents all the options. https://ww.wp.xz.cn/plugins/rss-import/
The default value of start_items is
<ul>, it sounds like you’ve overwritten that value with your<a>tag. I think if you just tack the
<ul>onto the end of your custom code, you should be back in business.