The plugin has this:
Code: Select all
RSS display element
Whic element of the RSS feed should be displayed? (i.e.: "title", "content:encoded", "description", ...)Code: Select all
Use RSS-Link?
Shall a link be set to the link specified in the RSS feed?Code: Select all
Display Date
Show items of a remote RSS/OPML feed (e.g. Blogroll)So I want a display something like this:
<title>This is my title, and I want it to be a link</title>
<description>This is the feed description tag, but it is NOT part of the link </description>
<date>Date of entry</date>
right now, if I make the value of "RSS display element" equal to "title, description", both are combined into a single link. That is ridiculous in my opinion. If "Use RSS-Link?" is true, IMHO just the title should be a link - not description, nor any other tag that might appear in the feed. HTML wise, what I would like is:
<a>title</a> (ideally wrapped in a block level element)
<p>description, and any other tag</p> (better yet - classes to identify each tag).
date (which already seems to be wrapped in a <div>
You php experts can probably knock this out in a couple of minutes. I would spend days on it and still screw it up. If my intent seems logical, any chance someone could make the revision and commit????