The Clean Options plugin lists options named "rss_(hash value)" and "rss_(hash value)_ts". Where do these options come from? Wordpress uses the fetch_rss function to get content from RSS feeds. For example, the dashboard uses fetch_rss() to get incoming links, dev news (wordpress.org/development/feed/), and planet news (planet.wordpress.org/feed/).
The fetch_rss function uses Magpie to cache the feed contents as options named "rss_(hash value)" for the content, and "rss_(hash value)_ts" for the timestamp. If the timestamp is determined to not be "stale", the cached content is used, else the feed is fetched anew.
1: The Clean Options plugin uses the $wpdb object to find all options where the autoload field of the wp_options table is NOT equal to "yes". The results are put into an array.
2: Each option in the array that matches a regex testing for option names beginning with "rss_" (contents) are put into an array, and options that match a regex testing for option names that begin with "rss_" and end with "_ts" (timestamps) are put into another.
3: The length of the timestamp options array is determined.
4: If the sorted timestamp array contains 15 or more options, the timestamp value of the 15'th one is passed to a variable.
5: The timestamp values of the other timestamp options are compared with this value. If there are less than 15 timestamp options, or if a timestamp option has a value that is the same or more recent than the "15'th time", the timestamp option is listed without a checkbox. That is, it can not be selected for preview nor can it be deleted by the Clean Options plugin. If the value of the timestamp option is older than the "15'th time", it can be selected for preview and deleted.
6: Although displayed as pairs in the list, the RSS content options array is not paired with the timestamp array. All content options are listed with a checkbox and can be selected for preview and deleted by the Clean Options plugin.
Should they be deleted by the Clean Options plugin? Note that "15" is used arbitrarily. The appropriateness of this number for any given blog depends on how many fetch_rss calls the blog makes. It is believed that this number is adequate in identifying those options which are Most Likely newer and thereby Most Likely being currently used. Most Likely – NOT – Definitely.
It is not known what the effect would be if a content option were to be deleted without it's corresponding timestamp option also being deleted. Nor is it known what the effect might be if both were to be deleted while still currently being used by the blog. However, if there is a long list of paired "rss_(hash value)" and "rss_(hash value)_ts" options, of those where both have checkboxes and both can be selected for preview, those with the oldest dates should be relatively safe to delete.
The timestamps of older options can be selected and end with "# days old" in BOLD.
Please only remove the older options in which BOTH options of the pair can be selected.
![[PDA - Heathcare NOT Warfare - Sign the Petition.]](http://pdamerica.org/images/front/HealthNotWar_final.jpg)





