Better Feed is a plugin for Wordpress that allows you to enhance your feeds with several highly customisable features.
Current version : 1.99 for WordPress 2.5+ Incoming version 2.0 with an easier to customize admin panel.
Features
- Add "Read more" links
On your site, you can split post on two parts, teaser and body, using the tag <!--more-->. Why not have a "Read more" link as well in your feed, for longer posts, or when you want to tease and keep the surprise off the feed ?
(By the way, while I'm at it : "summary" feeds truncated after 40 words just suck big time. Read more) - Add "Next page" links
Similarly, you can split posts in pages, with <!--nextpage-->. By default, feeds only show the first page and give no link for the rest. Why not have the same "Read more" link within your feed ? - Add the number of comments
When you find an interesting post via your feed reader, you often have to check the website for new comments, or to subscribe to the comment feed. Why not add, at the end of every RSS item, something like "13 comments", just like in your blog frontpage ? - Add a copyright notice
Concerned with content stealers reproducing your posts automatically somewhere without giving you credit ? Why not add something like "© Joe - 2005" and a link to some neat Creative Commons License ? - Add a list of related posts
Improve connectivity between your feed and your site : why not add, at the end of each RSS item, a list of related posts your readers may have missed ? - Add a link for Technorati's Cosmos
Why not add a handy link to quickly check who's linking to your post ? - Add a "Add to del.icio.us" link
Let your readers bookmark your entries right from within their RSS reader - Add anything
There's so many stuff you could think of that I just can't list them all :)
Download
You know the story : download, edit the beginning, upload to your server, activate. Next section details everthing that can be edited.
wp_ozh_betterfeed.zip
Extract and upload to your blog, preserving directory structure if any.
Note: download counter here and stats on wordpress.org may differ and reflect the number of downloads before this plugin was hosted on the plugin directory
Configure
Edit the beginning of the plugin (the source itself is fairly well documented, most users can just stop reading here now :)
$wp_ozh_betterfeed['split']
Set to 1 (one) if you want your feed to obey the <!--more--> tag and add a "Read more" link.
Set to 0 (zero) otherwise (print whole post, as in Wordpress default behavior)
$wp_ozh_betterfeed['multipage']
Set to 1 (one) if you want your feed to smartly hanlde multiple page posts (with <!--nextpage-->), i.e. provide a "Read More" link as well (Wordpress default behavior does not special in this case, just displays first part and nothing else)
Now edit your custom strings : "read more" link, custom footer, number of comments. In each of these strings, you are allowed to use the following "template tags" :
- %%blogname%% : blog name (My Weblog)
- %%blogurl%% : blog url (http://myblog.com/)
- %%posttitle%% : post title (Hello World)
- %%posturl%% : post url (http://myblog.com/archives/2001/02/03/hello-world/ or http://myblog.com/?p=1337)
- %%id%% : post ID (its number, i.e. 1337 in above example)
- %%date[Y]%% : date / time of post, where pattern within brackets follows PHP date() syntax
- %%categories%% : list of commas separated category names the post is filed in
- %%categorylinks%% : list of commas separated category links the post is filed in
- %%comments%% : number of comments
- %%comments_text%% : text for 0, 1 or xx comments (see below)
- %%readmore%% : "Read more" link text, if applicable (see below)
- %%wordcount%% : total number of words in a post
- %%wordcount_remain%% : number of words in second part after the split
- %%author_first%% : author's firstname
- %%author_last%% : author's lastname
- %%author_nick%% : author's nickname
Use these tokens to create your own strings for the following :
$wp_ozh_betterfeed['readmore']
Defines text for the "Read more" link, if applicable (empty otherwise)
Suggested :
-
(...)<br/>Read the rest of <a href="%%posturl%%">%%posttitle%%</a> (%%wordcount_remain%% words)
$wp_ozh_betterfeed['footer']
Defines you custom footer that will be added after every RSS items.
Suggested :
-
<p>%%readmore%%</p>
-
<hr noshade style="margin:0;height:1px" />
-
<p>© %%author_nick%% for <a href="%%blogurl%%">%%blogname%%</a>, %%date[Y]%%. |
-
<a href="%%posturl%%">Permalink</a> |
-
<a href="%%posturl%%#comments">%%comments_text%%</a></p>
-
<p>Add to <a href="http://del.icio.us/post?url=%%posturl%%&title=%%posttitle%%">del.icio.us</a></p>
-
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/%%posturl%%" title="Search on Technorati">Technorati</a></p>
-
<p>Want more on these topics ? Browse the archive of posts filed under %%categorylinks%%.</p>
$wp_ozh_betterfeed['0comment'] = "No comment";
$wp_ozh_betterfeed['1comment'] = "One comment";
$wp_ozh_betterfeed['Xcomments'] = "% comments";
Define replacement for %%comments_text%% when there is no, one or more than one comment. The '%' sign is replaced by actual number of comments in the last string.
Please note
A few things you might not get on first run that will save me some support:
- If you include the number of comments in each feed item, be warned that some feed readers will display an item as "New" every time someone comments on it. It's normal, and it is how I intented it to behave so following conversation is easier than ever.
- If you're using Feedburner, your feed won't immediately show changes after you've activated the plugin. To do so, go to your Feedburner Dashboard → Troubleshootize → Synchronize.
- You won't notice any change if you're viewing your feed with your regular browser. Use a feed reader.
License
This plugin is released under the terms of the SMYF License. SMYF stands for "Show Me Your Feed", so if you happen to use my plugin, just tell me so I can see what you've done (and maybe subscribe to your feed if it's cool !)
said, on 19/Sep/05 at 8:53 am # :
Perfect timing. I was going to ask you about something which could add a Read more in my feed.
thought, on 19/Sep/05 at 3:03 pm # :
Tim, we will soon discover we can't live one without the other :)
pingback on 20/Sep/05 at 9:08 pm # :
[...] This new Wordpress plugin has some sweet new features for your feed. [...]
commented, on 21/Sep/05 at 2:30 am # :
Ozh, thanks for this! I've been searching for a way to add a "comment at the site" footer to my rss, to stop those pesky livejournalers from commenting on the feed and getting confused as to when i don't respond... Let's hope this does the trick.
thought, on 21/Sep/05 at 3:43 am # :
Perfect!
I was looking for something like this and was actually getting ready to write a forum post to ask someone to make a plug-in like this since I do not do any programming myself. Sweet! Looking forward to try it out (when my server is back up...)
replied, on 21/Sep/05 at 5:12 am # :
Thanks for your great work.
I think now you can add google blog search :P.
pingback on 21/Sep/05 at 5:14 am # :
[...] 11) Better Feed [...]
commented, on 21/Sep/05 at 3:13 pm # :
Very nice plugin.
Cant wait to install it.
Hope the updates bring more.
Thanks for the good work.
pingback on 22/Sep/05 at 2:41 am # :
[...]   Better Feed,å¯ä»¥ä¸ºä½ çš„Feedå¢žåŠ æ–°ç‰¹æ€§ï¼š å¢žåŠ ”Read More”链接 [...]
pingback on 24/Sep/05 at 8:43 am # :
[...] RSS is geen onbekende meer, met dank aan Pietel om dit aan de Vlaamsche blogosfeer duidelijk te maken. En voor hen die hun WP-feeds willen uitbreiden is er nu Better Feed. [...]
pingback on 24/Sep/05 at 10:23 am # :
[...] planetOzh Has released a plugin that allows for customization of your feed. Seems like an infinite amount of options. With the growing popularity of RSS, this should prove to be a handy tool, no doubt. [...]
pingback on 24/Sep/05 at 6:31 pm # :
[...] Der eine abonniert Feeds, um Beiträge aus allen möglichen Blogs “gesammelt” an einer Stelle zu haben, der andere möchte (z. B. wegen einer langsamen Modem-Verbindung) nur die ersten Sätze, der nächste mit Bildern, der andere ohne usw. usw. Ich stelle daher ja schon länger verschiedene RSS-Abo-Varianten zur Verfügung. Aber es geht noch besser: Durch das WordPress-PlugIn “Better Feeds” wird jeder Beitrag (in der RSS 2.0-Version) um sinnvolle Links ergänzt: So wird angezeigt, ob Kommentare vorhanden sind, die Verlinkung bei Technorati ist dabei, der Vorschlagslink für del.icio.us usw. Sicher wird nicht jeder Abonnent diese Links immer nutzen - aber falls in doch mal ein Artikel mehr interessiert, hat er hier gleich die passenden Short-Cuts. [...]
trackback on 27/Sep/05 at 3:37 pm # :
Not another RSS post
This is hopefully the last one for a while. You may have noticed that this site’s feed started displaying a few new features over the weekend. That’s thanks to a great new WordPress plugin called Better Feed. I’ve used it to add an ...
said, on 06/Oct/05 at 5:33 pm # :
This plugin sounds very interesting!
I've downloaded it, configured it, activated it, and it doesn't seem to work. :-(
My feeds are always the same old ones, no changes at all... Maybe I'm missing something...
I'm using WP 1.5.2
thought, on 07/Oct/05 at 12:51 pm # :
Zelig » sorry, can't help you. Usually when you download, configure, activate, it just... works :)
wrote, on 13/Oct/05 at 12:36 am # :
The plugin does sound great but it isn't working here either.
Do I just have to activate the plug-in? Or do I need to add code to the themes?
I`m using 1.5.2 with the K2 template
thought, on 13/Oct/05 at 9:29 am # :
You just have to activate the plugin. Editing is optionnal (but recommended to suit your needs)
I've seen numerous feeds using this plugin, so I guess your problem may be K2 related. If any other K2 user is reporting troubles, I *may* investigate a bit
pingback on 14/Oct/05 at 9:53 pm # :
[...] Schon eine ganze Weile störte es micht, dass im Feed nicht die Anzahl der Kommentare angezeigt werden und die “read more”-Funktion nicht funktionierte. Aber Karsten erinnerte mich grade an ein Plugin was er nutzt, welches genau diese Funktionen unterstützt. Als habe ich Better Feed kurzerhand installiert und nun sollte es laufen. Wer probleme mit dem Feed hat einfach kurz melden. Ich finde es auf jeden Fall eine gute Lösung und macht den Feed viel anschaulicher. [...]
commented, on 20/Oct/05 at 2:25 pm # :
I also installed and activated the plugin and can´t see any changes. Iam using wordpress 1.5.2, changing themes did not help either so i suppose it must be plugin related.
replied, on 20/Oct/05 at 9:01 pm # :
Themes has nothing to do. Indeed it is probably plugin related : another plugin conflicting. (Although I know no other plugin that plays with feeds)
replied, on 21/Oct/05 at 12:19 am # :
Iam not using that many plugins:
Adsense-Deluxe, AttachFile, Counterize, eMiniMall, Google Sitemaps, WP-ContactForm and Better Feed
wrote, on 21/Oct/05 at 12:30 am # :
Hej just another questions, could you tell me how you incorporated google adsense in the comments area ? I suppose you edited the comments.php file but I´am not really that good in php that i can do that on my own.
Would be really nice if you could tell me what to change to make ads appear in my comments as well.
thank you
Martin
thought, on 23/Oct/05 at 5:02 pm # :
Ozx, I really like the plugin except for one issue. It seems to display an entry as new in a feed reader (I use Bloglines) everytime the comment count on a recent entry changes, even if there aren't actually any new entries. Is there a way around this?
commented, on 23/Oct/05 at 8:55 pm # :
Jacob, as far as I know Bloglines is the only feed reader with such a behavior.
And to be honest, this is exactly what I intented : how would you be supposed to track how many comments there are on a given entry if the feed item never updates as "new" ? Otherwise, entries would always show 0 comments (i.e. number of comment when blogline refreshes your feed) and never update.
thought, on 25/Oct/05 at 8:07 pm # :
Ah, that is a good point. The only time it could be annoying is when it sends a "false alarm" to readers that there's a new entry. I guess I'll consider this an incentive to make sure I always have new content up :)
Thanks for the plugin!
said, on 25/Oct/05 at 9:59 pm # :
If "false alarm" is an issue, you could still use the plugin with a feed item footer mentionning no comment count. This way, text wouldn't change.
And thanks for your feedback, I appreciate :)
pingback on 01/Nov/05 at 5:48 am # :
[...] Anyhow, such that all my hard work does not go unnoticed, there is now a neat little footer to each post. Essentially you have a link to the actual post itself (useful if’n anyone wants to link to a specific post from offiste), a link to the post comments (essentially the same as clicking the number to the right of the post title), a link to add the post to your delicious bookmarks account, a link track links to this post at Technorati, and a link to browse other posts in the same category. The plugin, if anyone is interested, is a modified version of the Better Feed plugin by Ozh. [...]
commented, on 11/Nov/05 at 9:13 am # :
not getting it to work - are there any known conflicts with other plugins? I have wp-cron future pings (1.1) and smart update pinger 1.2....
thought, on 12/Nov/05 at 4:22 pm # :
Don't know. It just works anywhere I've tested it.
wrote, on 13/Nov/05 at 11:50 pm # :
I think this plugin won't work if you have the Wordpress Feedburner Plugin by Steve Smith installed on your Wordpress. I have to disable Steve's plugin to make your plugin work on my site. Can you recommend any fix? Thanks.
thought, on 14/Nov/05 at 9:33 am # :
Sorry, I also run the Feedburner plugin on all my blogs :)
wrote, on 14/Nov/05 at 3:24 pm # :
It's ok now... it seem i was wrong.. it seems feedburner took a little more time to update my feed. Now everything is perfect. Thank you!
commented, on 07/Dec/05 at 3:30 pm # :
Just starting using this plugin, and wanted to thank you for it, its absolutely great.
Works perfect with Wordpress 2.0 RC1 as well.
wrote, on 07/Dec/05 at 5:50 pm # :
Thank you for your feedback :)
wrote, on 11/Dec/05 at 11:22 am # :
I found this script/plugin to be very helpful. Thanks
pingback on 12/Dec/05 at 7:25 pm # :
[...] The Better Feed WordPress plugin has been just the thing I have been looking for to improve the value of my RSS feed and to provide higher user interaction between my feed and my website. [...]
said, on 15/Dec/05 at 9:57 pm # :
i deactived all plugins and just active this and write a new post but nothing aactived!
:-?
wrote, on 16/Dec/05 at 10:22 pm # :
I'm setting up your plugin for my feed but I am having problems with the "post to del.ico.us" part. Some of my posts have titles that include commas and quotations, and when that is written in the URL it messes up the del.ico.us link. Is there any way I can get it to work and still keep my commas/quotations in article titles?
thought, on 17/Dec/05 at 12:19 am # :
http://crazycore.com...
user:test
pass:test
plugin uploaded and chmoded to 777
and actived
and test post published but
Better Feed plugin doesn’t work at all!
Ozh please test and see
replied, on 17/Dec/05 at 12:30 am # :
ehsan » excuse me but all I see is a working plugin...
Mark » indeed, a double quote makes the link go moo.
The following trick should work. Replace the line :
$string = str_replace('%%posttitle%%', get_the_title(), $string);
With :
$string = str_replace('%%posttitle%%', str_replace('"','"',get_the_title_rss()), $string);
wrote, on 17/Dec/05 at 3:45 am # :
Ozh, I can't get the replaced trick to work... when I replace with the new code the quotes in the code don't close properly and things get all wacky... I tried smoothing it out by replacing with different types of quotes in the code to match what is in the plugin file but it wasn't working... could you send me the updated plugin file with the working fix?
pingback on 18/Dec/05 at 11:41 pm # :
[...] setzt man das Wordpress-Plugin Better Feed ein, was ich testhalber getan habe, sieht man zB in Bloglines folgende Zusatzangabem, die das Plugin im RSS Feed ergänzt hat: (Negativbild) [...]
pingback on 19/Dec/05 at 1:38 pm # :
[...] Mit dem Wordpress Plugin Better Feed lässt sich der RSS Feed [...]
thought, on 20/Dec/05 at 2:06 am # :
Mark » sorry, I didn't check how my comment outputted. What I meant was :
$string = str_replace('%%posttitle%%', str_replace('"','"',get_the_title()), $string);
pingback on 23/Jan/06 at 12:21 am # :
[...] Wordpress Plugin : Better Feed « planetOzh Wordpress Plugin : Better Feed « planetOzh (tags: wordpress plugin rss blog plugins blogging blogs design webdev lazysheep) [...]
wrote, on 02/Feb/06 at 6:55 am # :
Does this plug-in work with WP 2.0+? I tried to install it but didnt appear to be working correctly.
Also will this allow the display of images from our RSS Feed?
thought, on 02/Feb/06 at 12:17 pm # :
Mickey » I'm using it right here.
pingback on 02/Feb/06 at 9:17 pm # :
[...] Better Feed [...]
replied, on 10/Feb/06 at 12:37 am # :
This is what i`ve looking for, gonna use it on 1 of my blog. thanks :)
pingback on 10/Feb/06 at 11:57 am # :
[...] Wordpress Plugin : Better Feed « planetOzh Better Feed is a plugin for Wordpress that allows you to enhance your feeds with several highly customisable features. [...]
thought, on 22/Feb/06 at 11:40 pm # :
If the plugin doesn't work, then change under
Options
-> Reading
-> Syndication Feeds
- >For each article show
from "Summary" to "Full Text"
Then it worked over here.
pingback on 23/Feb/06 at 2:23 am # :
[...] Impliment the Wordpress Better Feed plugin. Then you can enable readers to make a more informed choice about being forced to view your website. Also, you can configure it to show links to your products and services at the end of the feed item should you want to. [...]
thought, on 26/Feb/06 at 4:51 pm # :
Nice plug-in and it's doing on full feeds what I hacked directly into the RSS files to show on my summary (making it easier). The only thing I'd like to do is be able to keep my summaries on and have it show the footer regardless. Any thoughts on what to add to the plug-in to do this?
replied, on 27/Feb/06 at 12:40 am # :
Elana » I designed the plugin exactly to entice people to switch to full feeds. People afraid of automatic content stealing can add a copyright, people wanting to add some teasing on their webpage with a "More" tag can do the same on their feed, etc...
So, basically, I designed it exactly *not* to work with short content feeds. Because, you know, partial content feeds suck :) Plus, a short content feed with as much text in the post summary as in the footer, well, that would really suck.
So, basically, you're on your own if you want to modify it to do so.
pingback on 27/Feb/06 at 5:55 pm # :
[...] Better Feed (neu) - ein paar nützliche Zusatzinfos für RSS-Leser: Name des Autors, Permalink, Link zu den Kommentaren und deren Anzahl, Technorati-Link, um zu sehen, ob der Artikel verlinkt wurde, “Add to del.icio.us“-Link und Links zu den Kategorien sowie weitere Optionen. [...]
thought, on 05/Mar/06 at 10:40 am # :
Most of my friends are on LJ, and tend to forget to leave their little sandboxed world to comment; as a consequence, I don't see their replies. I've been meaning to do something like this for quite some time.
Just upgraded to WP 2.0, installed this plugin, and the feed displayed with /feed/ doesn't seem to have been updated. However, if I append "?feed=rss2" to my blog URL, I do get the modified feed. This might explain the "it's not working!" posts.
Any idea how to make the /feed/ URL show the correct data?
commented, on 05/Mar/06 at 12:28 pm # :
Sam » I see no difference between your two URLs.
As for the "it's not working see no difference!" complaints, they mostly concern people who check their feed on feedburner, which actually can take a few moments to reflect changes on your actual feed.
pingback on 12/Mar/06 at 1:45 pm # :
[...] 3ã€Better Feed 增强 RSS Feed 内容。 [...]
pingback on 13/Mar/06 at 1:02 am # :
[...] i installed a new wordpress plugin yesterday. it’s called “better feed” and i am using it to do things that really should be easier to do on my own, but whatever. the principal reason that i sought it out was because it allows me to use the “quicktag” that makes a little link that says (more…), and everything before the link turns into the snippet that shows up on my rss feed, and the rest is cut off, but the link takes you to my site so that you can read the whole post, if you so choose. this is something that worked on my blog itself all along, but which didn’t export to my rss feed, which was aNNoying. it made me not use the feature, actually, because so many people read my blog through planet info that, if the whole post was going to appear there, it didn’t really matter if it was more conveniently formatted on my homepage. i didn’t want to write anything that was longer than i wanted to show up in the aggregator. [...]
said, on 01/Apr/06 at 9:16 pm # :
Do these changes have any impact on my feedburner feeds?
Meaning, if I costumize my default Wordpress feeds with this plugin, does it change the way my feedburner feeds look?
thought, on 02/Apr/06 at 12:55 am # :
Sarit: of course. Check my feed as an example. Of course resync your feedburner feed to reflect changes immediately.
pingback on 02/Apr/06 at 3:52 am # :
[...] The “Delicious Phase” began late last night with a desire to provide an easy method for readers like you to add MacManX.com’s posts and pages to your del.icio.us bookmarks. I began the rather lengthy process of implementing the “Delicious Phase” by replacing Angsuman’s Feed Copyrighter plugin with Ozh’s Better Feed plugin. Ozh’s plugin allows me to present MacManX.com’s RSS feed with a copyright notice similar to the one formerly provided by Angsuman’s plugin and an “Add to: del.icio.us” link under every post, as well as other useful features. Once Ozh’s plugin was properly configured and activated, I then began the long task of adding the “Add to: del.icio.us” link to Rin’s template files in order to make it appear under every post and almost every page here at MacManX.com. The completion of this specific task did not occur until sometime during the dark hours of the morning, mostly because I was very indecisive about the final placement of the link. [...]
wrote, on 02/Apr/06 at 10:40 am # :
Well, in that case- you're a genius :)
That's exactly what I've been looking for!
Thanks.
pingback on 08/Apr/06 at 11:35 am # :
[...] Als tussenoplossing heb ik de Betterfeed Plugin geinstalleerd. Deze plugin voegt o.a. een link toe naar het commentaar (Geen Reacties, 1 Reactie, 2 Reacties enz.). Dit betekent dan in ieder geval dat in RSS lezers als Bloglines het bericht na ieder toegevoegd commentaar weer “nieuw” wordt en opduikt in de lijst met ongelezen berichten. Ooit vond ik dat overigens vervelend gedrag, maar tegenwoordig stel ik dat juist op prijs, zodat ik de discussie n.a.v. een bericht kan volgen. Als u dit storend of juist wenselijk vindt, meldt het dan a.u.b.! Ik ben benieuwd naar uw mening! [...]
pingback on 08/Apr/06 at 6:32 pm # :
[...] השתמשו בפל×גין BetterFeed של Ozh על ×ž× ×ª להוסיף תוכן ומידע × ×•×¡×¤×™× ×¢×œ ×”×¤×•×¡×˜×™× ×©×œ×›× ×›×ž×• מספר התגובות, חיפוש ×‘×˜×›× ×•×¨×˜×™ והוספה לדלישס, כל ×–×” ×¢"×™ הפעלה פשוטה של הפל×גין. [...]
wrote, on 09/Apr/06 at 9:28 pm # :
If I have a thumbnail picture in my daily entry, will this plugin allow me to publish that thumbnail to my RSS feed and have it show up in feed readers?
I have been trying and trying to figure out how to do that and just... can't. Argh.
replied, on 10/Apr/06 at 9:39 pm # :
Ozh, thank you for the great plugin. I have been using it for several months now and have found it very useful. Props out.
commented, on 21/Apr/06 at 8:07 am # :
Exactly what I needed! Thanks so much!
(Tipped you a few bucks for all the time you saved me tonight.)
Amit
http://www.photojojo.com
thought, on 11/May/06 at 7:12 pm # :
This is a clever enhancement to WP. Thank you.
While I agree that full feeds are often better, there are occasions when a split feed is preferred. I make heavy use of category feeds in WP for our "News & Events" blog. When one of these category feeds is being consumed on a main page to show the latest news and events, I want it to show a teaser in order to save space. On the other hand, when one of these category feeds is being consumed by a page that is designed for printing, I want full feeds. Is there a way to selectively apply the Better Feed mojo to some feeds and not others?
thought, on 16/May/06 at 3:29 pm # :
Another question I have is how to change the date format to e.g. Dutch format. I already have the language file for Dutch installed in Wordpress.
commented, on 16/May/06 at 3:31 pm # :
Sorry, my first question was how to completely remove the "Comments" line from the RSS feed.
Great plug-in!
replied, on 19/May/06 at 10:56 am # :
In the meantime I got the solution via the Wordpress forums:
Edit the wp-rss2.php file, and remove the comments line in there.
replied, on 24/Jun/06 at 8:19 pm # :
hi! that's a quite good plugin. I am using it and wanted to say thanks. And my recommendation about the comment counts would be not to use. People can encourage their readers to use comment feeds.
wrote, on 10/Aug/06 at 1:15 am # :
Thanks for this plugin! It was exactly what I was looking for.
SMYF: http://feeds.feedburner.com/Mymoneyblog
said, on 18/Aug/06 at 2:31 pm # :
Hi Ozh
Nice plugin except I am having the asme problems as outlined in comment 56 above.
Feeds from:
http://www.redcardinal.ie/feed/rss/
are not being parsed correctly while from:
http://www.redcardinal.ie/feed/
and
http://www.redcardinal.ie/feed/atom/
your plugin is doing the trick. I use Google reader and only seems interested in picking up the 0.92 feed which isn't parsing the correct feed.
Any ideas pls?
said, on 20/Aug/06 at 10:43 am # :
Hi again Ozh
Forget about my post above - it seems to have settled itself.
Maybe Wordpress caches the RSS feed file?
Anyhow, thanks for the plugin!
wrote, on 20/Aug/06 at 11:34 am # :
Hmm
Sorry I spoke too soon.
RSS 0.92 still spitting out the old WP feed... :(
replied, on 29/Aug/06 at 11:31 pm # :
Hello! I’m looking for a plugin that lets me show a different Number Of Posts in the feed, depending on which category it is. For example my “News†feed will be the usual 10 posts limit, but the “Podcast†feed will show “-1″ posts (or, ALL the posts in that category, whether it’s 12 posts or 40).
Can you add this feature, or is there another way?
commented, on 15/Sep/06 at 8:24 pm # :
I love this script, it works awesome. They only problem that I have with using it, is that neither the full post or the "read more" excerpt are being shown. I have changed both settings (on/off if you will), but still only get the excerpts. I also don't get any errors. Any ideas on what could be wrong? Full post feeds are essential to the business that I am trying to start.
wrote, on 23/Sep/06 at 5:20 am # :
Its pretty useful plugin... thank you..
pingback on 30/Oct/06 at 4:25 pm # :
[...] There’s also the ability to monetize your feed. While it is tempting to just leave all the work to the automated service, you should consider the fact that you’d have a lot more freedom to choose if you’d use your own ads. For that i recommend using the Better Feed plugin. [...]
pingback on 31/Oct/06 at 5:27 pm # :
[...] 2. Better Feed If you’ve got my RSS feed, you’ll see all the dodads and widgets at the bottom of the post. That’s from Better Feed, and it’s a plugin that adds whatever you want to posts in your feed. One of the first and favorite plugins I’ve found for WordPress. [...]
pingback on 01/Nov/06 at 10:41 am # :
[...] Wordpress Plugin : Better Feed « planetOzh You have to do a little editing in the plugin editor and it doesn't rotate ads but you can put pretty much anything you want. __________________ .: Search Engine Optimisation Ireland | Catering Company Dublin :. [...]
pingback on 03/Nov/06 at 9:43 am # :
[...] Go to the Better Feed WordPress plugin page for more info. [...]
said, on 03/Nov/06 at 2:19 pm # :
This is really "the feed on steroids"! Splendid job! Thank you for sharing!