Remote RSS/OPML-Blogroll Feed
Posted: Wed Dec 12, 2007 5:43 am
I took this plugin for a "test-drive" today. I'd like to make a suggestion:
The plugin has this:
And also has this:
and finally this:
This last one has a really poor description... show items? How about "show date of..."??!! This is not my primary concern - the first 2 are.
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????
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????