Full Text Feed

Current Version: Full Text Feed 1.04

WordPress 2.1 introduces a nasty “feature” to feeds. Instead of abiding by your feed preferences, WordPress will truncate your feed’s content anywhere you insert a <!––more––> tag. Full Text Feed undos this functionality, allowing your feeds to contain the full text regardless of <!––more––> usage.

Installation

Unzip full_feed.zip, drop the full_feed.php file into /wp-content/plugins/, and activate the plugin.

Download Full Text Feed

Current Version: 1.04
Released: 08/04/07
WordPress 2.3 Compatible

Download Full Text Feed 1.04

Version History

1.04 - Bug Fix

  • Fixes password protected posts appearing in feeds.

1.03 - Bug Fix

  • Fixes stupid copy and paste error with the last update.

1.02 - Bug Fix

  • Now strips the <!–more-> tag out of your feed. Before the more tag would remain in an HTML comment, and not every feed reader was hiding comments.
  • Thanks to Ryan for this fix.

1.01 - Bug Fix

  • Increased the priority below 0 to insure that Full Text Feed is the first feed plugin executed.
  • Renamed function to prevent any potential plugin conflicts.

1.0 - Initial Release

Frequently Asked Questions

Q: Why am I still seeing truncated posts after installing and activating Full Text Feed?
A: Most likely something is caching your feed. If you use Feedburner to manage your feed or read your feed through an online service such as Google Reader, this is occurring. In both cases your feed will update on your next published post, but you can speed up Feedburner by pinging it.

127 Comments

  1. 1 Paul Stamatiou on Jan 28, 2007 at 3:20 am (Quote):

    W00t! Now I can upgrade to 2.1, assuming my other plugins are compatible. Thanks Ron!

  2. 2 Ronald Heft on Jan 28, 2007 at 3:24 am (Quote):

    No problem. I had to fix the “feature” myself, so I might as well share.

  3. 3 Amos on Jan 28, 2007 at 7:44 am (Quote):

    Thanks Ronald. Appreciate you putting this together. It was an annoying little bug.

  4. 4 Amos on Jan 28, 2007 at 7:47 am (Quote):

    Well maybe it isn’t a bug huh? Or is it? Was this just a problem when publishing with feedburner or is the break at –more– the default behavior of feeds now?

  5. 5 Ronald Heft on Jan 28, 2007 at 1:15 pm (Quote):

    Breaking an RSS feed at the <!–more–> tag is the default behavior of WordPress now.

  6. 6 Bharath Kumar on Jan 28, 2007 at 7:33 pm (Quote):

    Nice, thx for sharing it.

  7. 7 Ryan on Jan 29, 2007 at 5:24 pm (Quote):

    Ronald, Nice job. I think the WordPress team dropped the ball with this new RSS “feature,” and your plugin really helped.

    I noticed that it’s imperative that your filter run before any other filter, so I had to change the priority from 1 to -1. I currently had another content filter running at priority 0.

  8. 8 Jerry Chacon on Jan 29, 2007 at 5:44 pm (Quote):

    Ron:

    You rock. I have been complaining about this “feature” for a while now. I am so glad you have shared your fix. Thanks.

    – Jerry

  9. 9 Ronald Heft on Jan 29, 2007 at 6:08 pm (Quote):

    Thanks for pointing that out Ryan. I did not realize I could set the priority lower than 0. My intentions with setting it at 1 was to have it run first. I guess that’s not always the case. I’m updating the plugin now with a higher priority.

  10. 10 Ryan on Jan 30, 2007 at 10:12 am (Quote):

    Ronald, I also suggest a quick modification to strip out the more tag from the source content. Otherwise, my textile filter was interpreting it incorrectly.

    if ( is_feed() )
    $content = preg_replace(’//iU’, ”, $pages[$page-1]);

  11. 11 Ryan on Jan 30, 2007 at 10:13 am (Quote):

    That didn’t format correctly, trying again:

    if ( is_feed() )
    $content = preg_replace(’/<!–more(.+?)?–>/iU’, ”, $pages[$page-1]);

  12. 12 Ronald Heft on Jan 30, 2007 at 11:22 am (Quote):

    Good thinking Ryan. I don’t know how I overlooked that.

  13. 13 Ryan on Jan 30, 2007 at 11:57 am (Quote):

    Ronald, I think you accidentally copied over the emdash in the regular expression that wordpress displayed in the comment instead of rewriting it to be:

    < ! - - €m o r e ( . + ? ) ? - - €“>

    (Strip the spaces) Note the two separate dashes.

  14. 14 Ronald Heft on Jan 30, 2007 at 12:18 pm (Quote):

    Corrected.

  15. 15 Weefz on Feb 9, 2007 at 3:54 pm (Quote):

    Fantastic plugin, thanks. Much safer than messing about with wordpress files.

  16. 16 Kris on Feb 12, 2007 at 5:49 am (Quote):

    Thank you for this plugin.
    I was running mad, because I didn’t know why my feeds are cut out.
    Now my few readers can just read the feed without visiting the website :)

  17. 17 Saman Sadeghi on Feb 13, 2007 at 11:16 pm (Quote):

    A fantastic plugin, thank you so much!!!

  18. 18 gadgets expose on Feb 16, 2007 at 3:32 pm (Quote):

    Thank’s Ron. You’re so detail.

  19. 19 SusieJ on Feb 18, 2007 at 2:45 pm (Quote):

    Works awesome, and I think the whole process of downloading and activating the plug-in took less than 2 minutes.
    Thanks

  20. 20 Billy on Feb 25, 2007 at 7:57 am (Quote):

    Just what I was looking for, does exactly what it says it does. Simple install. Thanks!

  21. 21 martin on Mar 1, 2007 at 2:53 pm (Quote):

    Thank you thank you! Works just like it should, great plugin!

  22. 22 solodelibros on Mar 2, 2007 at 2:31 am (Quote):

    Hi,
    I tried to use your plugin in the last days, but it seems not to work on my site. I prove it with Google Reader and Bloglines, but both just show partial feeds. The plugin seems to work correctly, but there are no visible results. Any idea?
    Thanks for your help.

  23. 23 Ronald Heft on Mar 2, 2007 at 8:02 am (Quote):

    Google Reader and Bloglines cache your feed. You won’t notice any results using those services until you publish a new entry.

  24. 24 Jim on Mar 9, 2007 at 1:38 am (Quote):

    I installed the plugin and it does not seem to work. I am using WP 2.1.5 and have the WD FeedBurner plugin also. I tested by using the LWP command line utilitly GET.

    Any info would be appreciated.

    Jim

  25. 25 Ronald Heft on Mar 9, 2007 at 1:43 am (Quote):

    Do you currently have it enabled? If so, can you give me a list of all the plugins which modify your feed? If you don’t have it enabled, turn it on and let me know. I’d like to look at your feed with it on.

  26. 26 Ronald Heft on Mar 9, 2007 at 1:46 am (Quote):

    Correction, I just noticed you’re using Feedburner. Accessing your feed directly at this URL shows full text posts, where using Feedburner shows the posts with a more link. Have you pinged Feedburner to get it to update your feed? If not, do that and all should be well.

  27. 27 Jim on Mar 9, 2007 at 1:50 am (Quote):

    I have it activated. As a further test, I de-activated WD FeedBurner and tested again at the command line with GET, full-feed worked properly. I then re-activated WD FeedBurner and full-feed stopped working.

    I also tried setting the priority to -2, no change.

    I have it active now, but as you noticed I’m using FeedBurner.

    Jim

  28. 28 Ronald Heft on Mar 9, 2007 at 1:55 am (Quote):

    The problem is not the plugin, it’s Feedburner itself. Login to your Feedburner account and force an update on your feed. If you can’t figure out how to do that, worse comes to worse your feed will switch to full text on your next blog post.

  29. 29 Jim on Mar 9, 2007 at 2:02 am (Quote):

    Okay, I went to Feedburner and forced a ping. Then re-tested with GET at the command line and it appears to work now.

    Thanks for the tip!

    Jim

  30. 30 Annie on Mar 13, 2007 at 7:57 pm (Quote):

    Hi there:

    I installed your plugin & activated it, but I’m still getting partial feeds… is there something more I should do? Thank you!!

    Annie

  31. 31 Ronald Heft on Mar 13, 2007 at 10:04 pm (Quote):

    Annie, I see you’re using Feedburner. Feedburner has the cache of your old, partial text, feed. You can force an update by visiting the FeedBurner site and using their ping functionality to update your feed.

  32. 32 annie on Mar 14, 2007 at 9:30 am (Quote):

    Thanks for the tip–I pinged them & resynced my subscription, but my latest blog post came in as a partial :(

    I love Wordpress almost entirely, but really hate them for this…

  33. 33 Ronald Heft on Mar 14, 2007 at 11:46 am (Quote):

    If I view your feed directly at http://superfastreader.com/?feed=feed, I do get full posts. Something weird is happening between your feed and FeedBurner. My guess is the next blog post you do will be full text.

  34. 34 annie on Mar 14, 2007 at 11:56 am (Quote):

    that worked–how wonderful–thank you!!

  35. 35 Sebastian on Mar 21, 2007 at 5:54 pm (Quote):

    This is a great plugin. I will show it in public very soon! offline it works very fine. THX

  36. 36 Adam on Apr 2, 2007 at 12:17 am (Quote):

    Hey ronald… I unzipped the package, uploaded it into the correct folder and activated.. how long does it take to work? Because I’m not seeing full text.

  37. 37 Ronald Heft on Apr 2, 2007 at 1:16 am (Quote):

    Are you using Feedburner? If so, it will take effect on your next post or you can manually use the Feedburner admin pages to refresh your feed there.

  38. 38 Ronald Heft on Apr 2, 2007 at 1:19 am (Quote):

    Actually, I just checked out your feed and it’s full text for me. If you’re viewing it in Bloglines or Google Reader, the posts that were truncated will always be truncated. Both those services use caching and will not update the original post. Any new posts will be full text though.

  39. 39 Adam on Apr 2, 2007 at 9:28 am (Quote):

    Ok, I think I get it now. Also, I’ve been editing the site through Mozilla Firefox and having no appearance problems… I open it in internet explorer and I get a bunch of crap…. how is this happening?

  40. 40 Ronald Heft on Apr 2, 2007 at 9:50 am (Quote):

    Are you referring to your feed? If you’re using IE6, that does not have any “pretty display” of RSS feeds like Firefox does. If you’re looking at your feed in IE7 it should look similar to Firefox.

  41. 41 Adam on Apr 2, 2007 at 11:20 am (Quote):

    oh no, I’m not referring to my feed… my website … the template shows up all nice and right on mozilla with the correct formatting, but on ie 6 it’s a load of unorganized crap. I have no idea what the issue is.

  42. 42 Ronald Heft on Apr 2, 2007 at 2:11 pm (Quote):

    Ah, IE troubles display trouble. For that I would check out my IE Hack Guide. That should help you get started at bring IE up to par.

  43. 43 Tommy Eriksson on Apr 27, 2007 at 10:13 am (Quote):

    Hi there, i too have been having problems even after using your plugin. I’m not using feedburner so that’s not the cause. I am however swedish as you can tell by my site and my blogg is using a swedish theme. Is that the problem? Thankfull for help.

  44. 44 Ronald Heft on Apr 27, 2007 at 10:20 am (Quote):

    Tommy, I checked your site and all your posts are indeed full text. Perhaps your RSS reader caches old posts? All new posts should be full text.

  45. 45 Tommy Eriksson on Apr 27, 2007 at 10:40 am (Quote):

    My feed isn’t in full text when i view it in firefox. I’ve tried clearing the cache several times and posted many new posts but all show up cut off. What is wrong.

    The reason i’m even worrying about this is because i’m trying to get my blog listed at a news site but despite pinging the correct service i’m not showing up there. My theory is that the cut off feed is the cause. A friend og mine is having the same problem with another site. I don’t have a RSS viewer installed because i don’t think it’s necessary. I don’t view feeds and if i do i use FF.

  46. 46 Ronald Heft on Apr 27, 2007 at 10:48 am (Quote):

    Firefox always cuts off your feed and limits it to 2 lines. Anyone subscribing to your feed in another client will see the full text, so that would not be your problem.

    If your having trouble getting your site listed somewhere, I suspect it’s because your serving your feed in the atom format. Not all RSS parsers understand atom.

  47. 47 Tommy Eriksson on Apr 27, 2007 at 10:53 am (Quote):

    How embarrassing. It looks like my article has been linked to. Or should i say the copy of the article which must mean that your plugin is indeed working even though i can’t see it in FF. Looks like i should get a proper RSS reader.

  48. 48 Tommy Eriksson on Apr 27, 2007 at 10:59 am (Quote):

    Actually it’s 3 lines but i see your point. You posted while i was typing the other comment. The feed is in RSS so no atom. Anyway thanks for a wonderful plugin. Now i’m gonna go and get a proper RSS reader so i can see my feed as it should look.

  49. 49 kd on May 1, 2007 at 4:42 pm (Quote):

    Question for you, I know this off topic but I’ve had a hell of time trying to find an answer.

    Can I set the feedwordpress plugin to display the full positing from an RSS feed?

    Right now it just shows the headline and a maybe an excerpt, when I really want to blog the entire post.

    Thanks!!!!

  50. 50 Ronald Heft on May 2, 2007 at 4:52 pm (Quote):

    Sorry kd, I don’t have an answer for you.

  51. 51 Hans on May 4, 2007 at 9:00 am (Quote):

    Just for what I was looking for. Thanks Ron.

  52. 52 Lisa on May 8, 2007 at 5:56 pm (Quote):

    i searched for this plugin so long, thanks for the release
    bye

  53. 53 Marc Holt on May 25, 2007 at 12:19 am (Quote):

    Hello Ron, I am new to RSS feeds. I have installed FullTextFeed and activated it. But how can I use it to display feeds on a page?

    For example, if you go to this site http://allcarparts4u.com I want to display feeds from other websites on the Top Speed page. Do I have to insert special code to do this? I am at a complete loss here. Hope you can help.

    Cheers!
    Marc

  54. 54 Ronald Heft on May 25, 2007 at 1:17 am (Quote):

    Full Text Feed does not read other RSS feeds. Instead you should look at the SimplePie WordPress plugin.

    While I don’t know what feeds you’re planning to display, I would recommend if the feeds are from sites other than ones you own, you should contact the sites in question before displaying their content.

  55. 55 Marc Holt on May 25, 2007 at 1:31 am (Quote):

    Thanks Ron. Don’t worry, I will be contacting the sites I want to display feeds from.

    Cheers!
    Marc

  56. 56 Tweaking WordPress for RSS FEED on Jun 3, 2007 at 3:44 pm (Quote):

    I installed this plug-in and re-ping my feedburner and did see the full text feed. I am just wondering if it’s possible to include the related posts into the feed as well?

    Would that be possible to include the related post before tag and get it into the full text feed?

    Am I asking something possible?

    Thanks!

  57. 57 fivecentnickel.com on Jun 3, 2007 at 10:05 pm (Quote):

    Curious… Is this still an issue with WP 2.2?

  58. 58 Ronald Heft on Jun 3, 2007 at 11:33 pm (Quote):

    Tweaking WordPress for RSS FEED: I installed this plug-in and re-ping my feedburner and did see the full text feed. I am just wondering if it’s possible to include the related posts into the feed as well?

    Would that be possible to include the related post before <!–more-> tag and get it into the full text feed?

    If you’re manually inserting related posts into your articles and using Full Text Feed, placement should not matter. You can insert them before or after the <!–more-> tag and they will display in the feed.

    However, if you’re using a plugin it’s a bit more complex. I recommend you contact the author of your specific related posts plugin for more assistance. Or, if you’re using the popular Related Posts plugin check out this article.

    fivecentnickel.com: Curious… Is this still an issue with WP 2.2?

    Yes, WordPress 2.2 still prevents full text feeds and most likely will for sometime to come.

  59. 59 Zath on Jun 10, 2007 at 3:31 am (Quote):

    Thanks very much Ronald! It’s been annoying me for ages now - I’ve not been able to use the option in my posting because I always wanted a full feed.

    Cheers!

  60. 60 Will on Jun 10, 2007 at 7:42 pm (Quote):

    I followed instructions and I get the below error message on the plugin’s Options>FeedControl page.

    I also use the feedburner feed replacement plugin:
    http://orderedlist.com/wordpress-plugins/feedburner-plugin/

    Is there a conflict between the two?

    —————————–

    HTTP Status 400 - You must provide a feed uri

    type Status report

    message You must provide a feed uri

    description The request sent by the client was syntactically incorrect (You must provide a feed uri).
    Apache Tomcat/5.0.28

  61. 61 Ronald Heft on Jun 10, 2007 at 8:38 pm (Quote):

    Will, Full Text Feed doesn’t have a Options>FeedControl page. There are no settings for it, so it must be another plugin you’re looking at.

    Regarding compatibility with the Feedburner plugin, Full Text Feed is compatible. In fact, I run the Feedburner plugin on this site without issue.

  62. 62 Will on Jun 11, 2007 at 12:16 pm (Quote):

    Sorry Ron! Trying too many plugins with too similar names! That was one I had installed and then decided not to use. Once I looked closer, I saw yours.

    Once installed, what is the easiest way to make sure it is working on my installation? Short of setting up a Google reader account and actually subscribing to the feed. What does it mean when some of the people using your plugin say here.. I “repinged my feedburner”?

    Thanks!

  63. 63 Ronald Heft on Jun 11, 2007 at 7:14 pm (Quote):

    The easiest way to view your feed would be using IE7 or Safari. Firefox 2.0 handles feeds too, but it doesn’t display the full text.

    Regarding “repinging feedburner”, if you use Feedburner.com you have to enter your site at this URL for the changes to reflect on your feed.

  64. 64 Will on Jun 15, 2007 at 1:11 pm (Quote):

    Thanks, Ron. One other question… Are you using a plugin to get all the pings and trackbacks listed below the comments instead of all mixed together?

  65. 65 Ronald Heft on Jun 15, 2007 at 1:37 pm (Quote):

    No, I wrote a custom solution to handle the separation.

  66. 66 Aldian Prakoso on Jun 20, 2007 at 12:04 am (Quote):

    Thanks for the plugin Ronald. Is there anything else that I need to do other than activate it?

  67. 67 Ronald Heft on Jun 20, 2007 at 3:55 am (Quote):

    Nope, you only need to activate it.

  68. 68 Huygens on Jun 20, 2007 at 6:12 pm (Quote):

    I was just looking for a solution like yours. Between truncated feeds and full ones, I personally prefer full ones. So, your plug-in is a bliss.
    May I suggest an improvement?
    You could add an option to your plug-in, to have full feed (just like it is now) or to have both full and truncated feeds. The second option might requires that web site owner modify their theme to display access to both. But it should be easy to create a second link (

  69. 69 Ronald Heft on Jun 20, 2007 at 6:16 pm (Quote):

    Huygens, that’s an excellent idea, but I’m not going to add it to Full Text Feed. Full Text Feed is designed to be a simple fix for the “bug” that WordPress added in 2.1. Sorry.

  70. 70 David on Jul 18, 2007 at 9:51 am (Quote):

    Thanks for the plugin, it is usefull. good job ;)

  71. 71 Mitch on Jul 23, 2007 at 3:31 am (Quote):

    Thanks!

    I didn’t realize that I was being truncated!

  72. 72 Learnfromgurus.com on Jul 27, 2007 at 2:40 pm (Quote):

    This is what I am looking for, thanks!

  73. 73 BCSEEATI on Jul 30, 2007 at 10:10 am (Quote):

    I found this plugin will also show protected posts’ full text in feed.

  74. 74 Ronald Heft on Jul 30, 2007 at 4:55 pm (Quote):

    BCSEEATI: I found this plugin will also show protected posts’ full text in feed.

    Thanks for making me aware of this. Unfortunately, I’m currently on a camping trip and my internet is very spotty. I will fix this first thing when I get back on Saturday.

  75. 75 BCSEEATI on Jul 31, 2007 at 11:26 am (Quote):

    Ronald Heft: Thanks for making me aware of this. Unfortunately, I’m currently on a camping trip and my internet is very spotty. I will fix this first thing when I get back on Saturday.

    Thanks!

  76. 76 Ronald Heft on Aug 1, 2007 at 12:16 am (Quote):

    I had a few free moments and was able to run some tests. I can’t seem to reproduce your problem. Can you verify that disabling Full Text Feed hides your private posts? Also, verify no other plugin is conflicting with this functionality. Finally, are you viewing your feed from a browser which is not logged into your site? Your private posts will display in your feed if you’re logged in. Try viewing the feed from another computer or browser and see if the private posts are hidden.

  77. 77 BCSEEATI on Aug 2, 2007 at 6:21 am (Quote):

    I means password protected posts, not private posts.

    I test again and deactivate other plugins. The text of password protected post will display in <content:encoded />.

  78. 78 BCSEEATI on Aug 2, 2007 at 6:28 am (Quote):

    BCSEEATI: I means password protected posts, not private posts.

    I test again and deactivate other plugins. The text of password protected post will display in <content:encoded />.

    I use WordPress 2.3-alpha, is it the problem?

  79. 79 Ronald Heft on Aug 2, 2007 at 8:41 am (Quote):

    Alright, I see what you mean now. I’m able to reproduce the bug on my local WordPress 2.3 SVN install. I can’t test WordPress 2.2 at the moment, but I’ll check that out when I get home on Saturday.

    As I said before, I’ll work on getting this fixed when I get back.

  80. 80 Ronald Heft on Aug 4, 2007 at 8:22 pm (Quote):

    BCSEEATI, the new version I just released will fix the bug.

  81. 81 BCSEEATI on Aug 4, 2007 at 10:34 pm (Quote):

    Ronald Heft: BCSEEATI, the new version I just released will fix the bug.

    Thanks for your work!

  82. 82 Kyle M. Brown on Aug 6, 2007 at 12:03 pm (Quote):

    Great plugin, appears to be working. Thanks.

  83. 83 Dave Zatz on Aug 10, 2007 at 2:43 pm (Quote):

    Just wanted to say thanks for the plugin! :)

  84. 84 joseph hollak on Aug 18, 2007 at 2:42 pm (Quote):

    Hey cavemonkey -

    Just another comment saying thank you for a great plug.

    joseph Hollak
    www.hollakmedia.com

  85. 85 Ronald Heft on Aug 18, 2007 at 7:29 pm (Quote):

    Glad you guys enjoy it!

  86. 86 pearl on Aug 21, 2007 at 12:06 pm (Quote):

    Hi Ron

    I recently downloaded this plug in and I don’t even use the more tag in my posts, but still in google reader, my feeds are just a couple of lines… did the resynch at feedburner, did change the options/reading to full text… still no full text.. any ideas why I am still getting partial feed? thanks!!

    PS: I’m using Wordpress 2.2

  87. 87 Ronald Heft on Aug 21, 2007 at 5:29 pm (Quote):

    pearl, I would look at your plugins that you have installed. I’m seeing this in your feed:

    [[ This is a content summary only. Visit my website for full links, other content, and more! ]]

    I know WordPress doesn’t add anything to your feed like that. If WordPress was truncating your feed, it would just be a simple more link. Have you looked at your Feedburner options at all? Maybe there’s a setting in there.

  88. 88 pearl on Aug 21, 2007 at 5:55 pm (Quote):

    Thank you so much for replying Ron…

    I think I found an option under Optimize/BrowsesrFriendly - where I had the chosen the option for ‘titles only’ - changed it to titles and content - and then even pinged it manually! Seems like the older posts are starting to work with full text and I am hoping its just a matter of time when all of the posts will show the entire content!!

    thanks again!!! :)

  89. 89 Peter on Aug 24, 2007 at 5:29 am (Quote):

    This plugin doesn’t work with the latest wordpress 2.2 version.
    I still see partial feeds when checking my feedburner posts.

  90. 90 pearl on Aug 24, 2007 at 8:29 am (Quote):

    hi Peter.. I am noticing partial feeds also - but I am seeing a peculiar thing, some of my posts are full text in the reader and some still partial - the earliest and the most recent posts changed to full text and the ones from June and July are still partial text and thats sort of weird!! I am not sure if its this plugin or something with the feedburner!

  91. 91 Ronald Heft on Aug 24, 2007 at 9:47 am (Quote):

    Peter: This plugin doesn’t work with the latest wordpress 2.2 version.
    I still see partial feeds when checking my feedburner posts.

    Peter, I just looked at your feed and I see full text posts. I have a feeling your Feedburner cache just needed to be cleared. By the way, something funky is going on with your home page. The whole page is a link.

    pearl: hi Peter.. I am noticing partial feeds also - but I am seeing a peculiar thing, some of my posts are full text in the reader and some still partial - the earliest and the most recent posts changed to full text and the ones from June and July are still partial text and thats sort of weird!! I am not sure if its this plugin or something with the feedburner!

    pearl, your Feedburner feed is fully full text for me. I’m not seeing the earlier partial text posts. Since your Feedburner feed only contains posts from August, any of the posts you’re seeing otherwise are no longer in your feed and have been cached by your feed reader.

  92. 92 pearl on Aug 24, 2007 at 10:57 am (Quote):

    thats even more strange Ron.. how did all the posts disappear from the feed?

    do you know of a way to bring those posts back to the feed somehow? may be I should post it on feedburner forums!?!

  93. 93 Ronald Heft on Aug 24, 2007 at 10:37 pm (Quote):

    Check your WordPress settings and verify that your RSS feeds are set to more than 5 items. If they are, I would definitely contact Feedburner.

  94. 94 Jared Schwager on Aug 30, 2007 at 5:41 pm (Quote):

    Thank you so much for making this plugin! I’ve been looking for something like this for a while now.

  95. 95 Gadgets blog on Aug 31, 2007 at 9:33 pm (Quote):

    hey man it doesn’t work for me.
    I downloaded and uploaded in plugins directory and then activated sucessfuly but it not working. you can see here http://www.gadgetsblog.org/feed/ if you can help me in implementing this wonderful plugin I will thankful to you.

  96. 96 Ronald Heft on Sep 1, 2007 at 7:20 pm (Quote):

    Gadgets blog, you feed appears full text to me. Perhaps you’re using a service such a Google Reader which is caching your feed. If that’s the case, any new posts should appear full text for you.

  97. 97 picbros on Sep 2, 2007 at 9:47 am (Quote):

    thank you I will try them

  98. 98 pearl on Sep 2, 2007 at 9:59 am (Quote):

    Hi Ron…

    Wordpress feed setting is set to 15 and I even left a couple of messages at the feedburner forums, but got no response and I couldn’t find any other way of contacting them. I am disappointed but can’t do much about it….

    thank you for the suggestion and looking into it though!!

    Pearl

  99. 99 Ronald Heft on Sep 2, 2007 at 12:52 pm (Quote):

    Pearl, I just loaded up your feed and all 15 items were displayed. Are you seeing the same thing?

  100. 100 Colin on Sep 8, 2007 at 4:10 am (Quote):

    Thank you very much!

  101. 101 hasmairul on Sep 18, 2007 at 3:05 am (Quote):

    Hi,

    i try this plugin at my blog but it seems not working well.

    can anybody help me?

    thanks

  102. 102 Ian on Sep 21, 2007 at 1:10 pm (Quote):

    Thanks for the plugin, Cavemonkey.

    I’m trying to import my feed posts in to Joomla, and it’s proving challenging.

    Things are getting better, thanks to your feed, but it is still truncated after 3 lines.

    I’m using your plugin with WP 2.3. What am I missing ?

    Here’s my feed:
    http://www.ushf.org/HCNews/?feed=feed

  103. 103 Ronald Heft on Sep 21, 2007 at 6:49 pm (Quote):

    hasmairul:i try this plugin at my blog but it seems not working well.

    can anybody help me?

    I’d be happy to help. What’s the problem?

    Ian: Thanks for the plugin, Cavemonkey.

    I’m trying to import my feed posts in to Joomla, and it’s proving challenging.

    Things are getting better, thanks to your feed, but it is still truncated after 3 lines.

    I’m using your plugin with WP 2.3. What am I missing ?

    Here’s my feed:
    http://www.ushf.org/HCNews/?feed=feed

    Just so you know, you’re not running 2.3, you’re running 2.2.3, but that doesn’t matter.

    What other plugins are you running? Looking over your feed, unless you have the plugin disabled, I see no reason why it would not be working.

  104. 104 Bert on Sep 28, 2007 at 11:54 pm (Quote):

    Thank you for this great plugin Ron!

    PS : Beurk, so many spam here :(

  105. 105 Bert on Sep 28, 2007 at 11:58 pm (Quote):

    Oops, forget my PS : I thought trackbacks were spams, sorry, it’s too late here ;)

  106. 106 Ronald Heft on Sep 29, 2007 at 12:47 am (Quote):

    Glad you enjoy the plugin Bert. Regarding spam, for some reason my plugins are very popular in Asia, leading to huge number of trackbacks. I often have to double check myself.

  107. 107 Manele on Oct 10, 2007 at 10:06 am (Quote):

    thank you for this plugin

  108. 108 John on Oct 12, 2007 at 1:47 pm (Quote):

    Exactly what I was looking for. No longer will my readers be punished for my layout requirements.

  109. 109 Joe on Oct 14, 2007 at 2:40 pm (Quote):

    Hi, I just installed your plugin and I’m not using any tags, but I’m still only getting a partial feed. Is there something I should do about that? It seems like they’ve been that way since I started.

  110. 110 Ronald Heft on Oct 14, 2007 at 9:54 pm (Quote):

    Joe: Hi, I just installed your plugin and I’m not using any tags, but I’m still only getting a partial feed. Is there something I should do about that? It seems like they’ve been that way since I started.

    There a couple of things you can try. Look in your Feedburner options for a summary setting. The option may be enabled. If it is, disable it. Also, make sure your WordPress Options > Reading shows full text and not summary.

  111. 111 Erek on Oct 25, 2007 at 3:12 am (Quote):

    So, it works perfectly for my full feed, but it doesn’t seem to work for my category feeds. ie /?feed=rss&cat=4 or something.

    Do you know why this might be?

    Thanks.

  112. 112 Ronald Heft on Oct 25, 2007 at 5:11 pm (Quote):

    Erek: So, it works perfectly for my full feed, but it doesn’t seem to work for my category feeds. ie /?feed=rss&cat=4 or something.

    Do you know why this might be?.

    I just checked your category feeds in my newsreader and they appear in full text. Perhaps you’re viewing a cached version or looking at them in Firefox which trims the feed content.

  113. 113 Erek on Oct 25, 2007 at 7:14 pm (Quote):

    Well, I’ll probably post something new today and see if that clears out Google Reader. And post back with the results.

    The reason I ruled it out before was that the posts deplayed in my normal feed updated to show full text, but then I would add a new feed to a category, and it would be truncated.

    Thanks for the reply, I’ll let you know what happens.

  114. 114 Erek on Oct 25, 2007 at 7:43 pm (Quote):

    So, it turns out the problem was that I was behind the times on using category feeds.

    So, when my link was of the sort “blog/?feed=rss&cat=4″ it would show up auto truncated in about 3 different programs at least. (That is, before even the more tag)

    When I looked around, I noticed that the comments feed for a specific post had a very intuitive feed link that is ../post-name/feed

    It turns out when I switched my cat links from the above to ../category/cat-name/feed they work fine in all the readers.

    I’m not sure why, but it’s probably good to use the new format anyway.

  115. 115 O on Oct 29, 2007 at 12:16 pm (Quote):

    Hello! Thank you for making my dream plugin! I just have one problem (well, maybe several). It’s not working for me (WP 2.3.1). I do use feedburner and feedsmith. I pinged (3 times in the past 4 hours) and I made a new post too. Any thoughts? I see it working on other blogs so I gather it must be mine. I don’t know where to start diagnosing. Any ideas?

  116. 116 Ronald Heft on Oct 30, 2007 at 12:04 am (Quote):

    O: Hello! Thank you for making my dream plugin! I just have one problem (well, maybe several). It’s not working for me (WP 2.3.1). I do use feedburner and feedsmith. I pinged (3 times in the past 4 hours) and I made a new post too. Any thoughts? I see it working on other blogs so I gather it must be mine. I don’t know where to start diagnosing. Any ideas?

    If you log in to Feedburner, there is a feed listed below your feeds called the FeedMedic feed. If you look at it, Feedburner will tell you problems they’re having receiving your feed. You should get a good clue from it if Feedburner can’t reach your site or you’re having validation issues. Good luck getting this solved!

  117. 117 Nikos D on Oct 30, 2007 at 12:23 pm (Quote):

    Thanks a lot, looks great :)

  118. 118 Nikole Gipps on Nov 1, 2007 at 3:58 pm (Quote):

    This is still not working for me … I’m using WP 2.3.1, the latest. I have tried pinging and nuking (resync) on Feedburner, and still it is truncated in both firefox, the Feedburner feed, and in NewsFire. Gah! How annoying! Any ideas besides going back to full posts?

  119. 119 Ronald Heft on Nov 1, 2007 at 4:11 pm (Quote):

    Nikole Gipps: This is still not working for me … I’m using WP 2.3.1, the latest. I have tried pinging and nuking (resync) on Feedburner, and still it is truncated in both firefox, the Feedburner feed, and in NewsFire. Gah! How annoying! Any ideas besides going back to full posts?

    I see what you mean. You feed is not displaying full text, however, the truncation you’re experiencing is not from WordPress’ more tags. If the summary would be caused by WordPress’ more tags the text would end with “(more)”. This is ending with “…” indicating something else is doing the truncating.

    I would verify you’re not running any other WordPress plugins that alter your feed. If you are, try temporarily disabling them. Also, double check your Feedburner feed does not have the “Summary Burner” enabled. Finally, I see you have ads in your feed. Verify your ad service is not truncating your feed to make room for the ads.

    Hope this helps and good luck finding the cause.

  120. 120 Nikole Gipps on Nov 1, 2007 at 4:28 pm (Quote):

    I just turned off the FeedSmith plugin so you can see the feed here:
    http://www.smallbusinessessentials.info/wp-rss.php
    Maybe this is some WordPress 2.3.1 thing? I checked about 10 times and it’s not truncating anything. I have it set to full posts!

  121. 121 Nikole Gipps on Nov 1, 2007 at 4:29 pm (Quote):

    It seems like a lot of people all having the same problem are all using WordPress 2.3.1.

  122. 122 Nikole Gipps on Nov 1, 2007 at 4:36 pm (Quote):

    You’re right … I just took the more tag out of post number 1 and still can’t get it to do full post.

    I’m going to head over to the WordPress forums now … thanks.

  123. 123 Ronald Heft on Nov 1, 2007 at 4:44 pm (Quote):

    Nikole, by disabling Feedburner we can now rule that out. What plugins are you using? I’m willing to bet one of your plugins is causing this behavior.

    If you do figure this out, please let me know your solution. Most people never follow up, so I don’t know what to suggest to other people experiencing your issue.

  124. 124 Nikole Gipps on Nov 1, 2007 at 5:26 pm (Quote):

    Ronald Heft: Nikole, by disabling Feedburner we can now rule that out. What plugins are you using? I’m willing to bet one of your plugins is causing this behavior.

    If you do figure this out, please let me know your solution. Most people never follow up, so I don’t know what to suggest to other people experiencing your issue.

    I’m not using any … I’ve disabled them all except for the “Full Text Feed” plugin. I’m using WP 2.3.1 pretty much out of the box, minus some minor changes I made to the includes files where it displays … but it has nothing to do with the feed.

  125. 125 Ronald Heft on Nov 1, 2007 at 5:52 pm (Quote):

    I just looked at your feed again and it looks fine using this URL:

    http://www.smallbusinessessentials.info/feed/

    However, the URL you gave me is truncated. Not sure why, but you can point Feedburner to the above URL to receive full text.

  126. 126 Nikole Gipps on Nov 1, 2007 at 6:28 pm (Quote):

    I moved the URL on feedburner, turned back on the Feedsmith and Full Text plugins, and off we go! Wheeeee it works now! Thanks. Maybe they just changed how their rss works …

  127. 127 Nikole Gipps on Nov 2, 2007 at 1:54 am (Quote):

    Here’s an explanation of why certain feeds got truncated (reply #4) … maybe add to your FAQ?
    http://wordpress.org/support/topic/141563

262 Trackbacks/Pingbacks

  1. […] a heads up to all you WordPress users out there. I have released a new plugin called Full Text Feed. Full Text Feed specialized in one thing - making your RSS feed full text. Why would you need such […]

  2. […] a single WordPress plugin known as Full Text Feed. You can grab a copy of the plugin from Ronald’s site - Cavemonkey50.com. Other stories breaking the […]

  3. […] a una próxima versión para resolver el problema. Ya  existe un plugin para eliminar ese bug: Full Text Feed (como debe ser). wordpress Popularity: unranked [?]Compartir Entrada Archivado bajo WordPress por […]

  4. Full Feed For WP 2.1 | Open Switch
    on Jan 28, 2007 at 5:32 pm

    […] maintain your full feed while allowing you to use the <!–more–> tag in your posts: Full Text Feed. Share This This entry was written by Ben and posted on January 28, 2007 at 5:32 pm and filed […]

  5. WordPress 2.1 - Feeds » Solo Technology
    on Jan 28, 2007 at 10:46 pm

    […] have changed. Frankly, I’m not sure I agree with the change, but fortunately there’s a full feed plugin at […]

  6. Plugin: Full Text Feed « Soporte-Wordpress
    on Jan 29, 2007 at 12:03 am

    […] Visita la página oficial del plugin […]

  7. […] Full Text Feed prevents WordPress 2.1+ from adding a more link to your website’s feed. […]

  8. […] de inicio con la distribución de los feeds? He encontrado un plugin para solucionar este tema: full feed, acabo de instalarlo así […]

  9. […] full feeds, I supposed there has got to be a way around this. A quick search on Google led me to Ronald Heft, Jr who has a solution to […]

  10. View from the Bench » Solutions
    on Jan 29, 2007 at 10:56 am

    […] it. Well, chalk another one up for “Oops, I goofed!”. Enter CaveMonkey50’s plugin Full Text Feed. It strips the “more” tags from feed content. Hurray!! So my next step is to take […]

  11. […] But then along comes Ronald Heft to the rescue.  Go here for the plugin. […]

  12. […] Wordpress 2.1 reduces your feeds to partial text?!?!?! That’s a joke I do not find humorous. Fortunately, there’s already a plugin available to fix it. […]

  13. […] Full Text Feed · cavemonkey50.com Instalação: A mesma de sempre: Suba o arquivo via FTP ou webpanel e habilite-o na seção […]

  14. […] the post excerpt for the front page of your blog, WordPress 2.1 truncates your feeds to that point. Full Text Feed WordPress Plugin by Cavemonkey50 changes your feeds to full whether or not you use the […]

  15. […] it’s a new ‘feature’ in WordPress 2.1 - thankfully there’s a plugin that can fix it that’s now installed. It shouldn’t happen […]

  16. SigT
    on Feb 1, 2007 at 11:54 am

    Full Text Feed: entradas enteras a pesar del “more”…

    Los que han actualizado a WordPress 2.1 y muestran las entradas completas en el feed se habrán encontrado con que el tag more las corta como si fueran sumarios…

    Full Text Feed es un plugin pensado para corregir este comportamiento. Las instrucc…

  17. […] Full Text Feed prevents WordPress 2.1+ from adding a more link to your website’s feed. […]

  18. Full feed et wordpress 2.1
    on Feb 5, 2007 at 4:52 am

    […] pour palier à ce problème il faut installer ce plugin qui oblige Feedburner à prendre le flux complet. Tags: bug, feedburner, plugin, rss, […]

  19. […] .. there’s a wordpress plugin called .. FULL TEXT FEED .. it stops that bad behavior of Wordpress 2.1 and kicks out the full feed of your […]

  20. Opaco » Blog Archive » Feeds pentelhos
    on Feb 5, 2007 at 6:09 pm

    […] se alguén actualizou ao wordpress 2.1, que saiba que pode devolvernos a semente rss enteiriña cun plugin. Facilítanos o seguir […]

  21. […] Full Text Feed · cavemonkey50.com Prevents WordPress 2.1+ from adding a more link to your website’s feed. (tags: wordpress plugin feed rss) […]

  22. WPのプラグイン:Full Text Feed
    on Feb 6, 2007 at 5:49 am

  23. BlogAjuda » Rapidinhas II
    on Feb 6, 2007 at 6:48 am

    […] o post será cortado no feed também. A solução para o problema foi usar o plugin Full Text Feed. Basta baixar, enviar à pasta /wp-content/plugins/ e ativá-lo. Simples, rápido e indolor […]

  24. […] il y a findus il y a une solution ! Celle-ci se nomme Full Feed, c’est un plugin pour WordPress qui obligera FeedBurner à oublier le tag “more” […]

  25. […] 2.1 (to which I upgraded a week or two ago). Aaaaargh! The good news is that there’s now a third-party plugin to fix this ‘feature.’ I’ve installed it and will now test […]

  26. » Blog Archive » Problemas con los feeds
    on Feb 11, 2007 at 11:37 am

    […] Visita la página oficial del plugin […]

  27. […] though is also subject to a debate. Thankfully Ronald Heft came to the rescue and has released Full Text Feed, a plugin that exports the full article, whether you use the quicktag or not. This is now in […]

  28. WordPress Plugin: Full Text Feed - JohnTP.com
    on Feb 12, 2007 at 12:36 am

    […] Download Full Text Feed […]

  29. Alex Blogging » Full feeds in Wordpress 2.1
    on Feb 12, 2007 at 12:38 pm

    […] If you think “Full Text Feed” is good for your blog you can download the plugin here. […]

  30. […] moet een plugin maar weer uitkomst brengen. CaveMonkey50 heeft er in dit geval één gemaakt. De plugin zorgt er dus voor dat bij gebruik van de […]

  31. - priv - » WordPress 2.1
    on Feb 13, 2007 at 12:49 pm

    […] rss會截在<!–more–>tag,就算你é?¸full text rss也一樣。開發team基本上ä¸?打算改這個æ?±è¥¿ï¼Œæ‰€ä»¥å?ªèƒ½è‡ªåŠ›æ•‘濟,å?¦å¤–也有這個和那個plug-inÃ¥?¯ä»¥ä½¿ç”¨ã€‚ […]

  32. […] MORE (continue reading) option. ReviewSaurus offered some tips on how to fix the problem with the Cavemonkey50.com Full-feed WordPress Plugin, and added a great use of the Related Entries Plugin with a hack to allow related post lists to be […]

  33. […] a heads up to both potential readers and Wordpress users. Cavemonkey50.com has released a new Wordpress plugin that strips the “more” link from your feed source. […]

  34. […] your full text feed. If you use Wordpress engine you can add Full Text Feed plugin, after that your feed will alway full text even when you add –more– / read the […]

  35. […] ==Comments and Feedback==  I love them, so please don’t be shy and write something at the category cloud homepage (http://www.mapelli.info/category-cloud/category-cloud-15)  Full Text Feed […]

  36. […] can get the plugin here. .diggthisplugin { width: 40px; padding-right: 10px; padding-left: 10px; } digg_url = […]

  37. […] Using the ‘more’ tag causes the posts to be cut short in the feeds [WP 2.1 issue]. This has now being fixed using the Full Text Feed plugin. […]

  38. […] タグ以é™?ã?®æ–‡ç« ã‚‚フィードã?«å?«ã‚?ã‚‹ã?Ÿã‚?ã?«ã€?Full Text Feed […]

  39. Full RSS Posts Restored - JakeJarvis.com
    on Feb 20, 2007 at 6:00 pm

    […] a heads up: thanks to cavemonkey50.com’s Full Text Feed WordPress plugin, my posts are no longer cut off by jumps in the RSS feed. February 20th, 2007 […]

  40. […] it changed bad enough do something about it. CaveMonkey50 has created a wordpress plugin called Full Text Feed that prevents the break in your feed. Just download, unzip, upload to your site and activate.. […]

  41. […] it’s not like we read our own feeds, is it?) the good news is that Robert Heft has created a plug-in to restore the previous full text feed functionality. […]

  42. […] somebody was nice enough to write a plugin.   The plugin is called Full Text Feed.  It gets rave reviews and if it works, this post will show up in its entirety in all our feed […]

  43. […] You can add “additionalâ€? tag clouds in a page by calling the category_cloud() function with a parameter, for example you can show the top 5 categories with <?php$a = “smallest=8&largest=22&order=POP&numitem=5″;category_cloud($a);?> here are the valid variables and what they means: * smallest is the smallest font size in the resulting tag cloud * largest is the largest font size in the resulting tag cloud * unit is the unit that it’s used for the font, can be one of o px o pt o em * exclude is a list of the excluded categories IDs, something like “1, 3, 15? * order is the order of the tags in the resulting tag cloud, can be one of o ASC sort by name, ascending o DESC sort by name, descending o random random order o POP sort by popularity, descending o UNPOP sort by popularity, ascending * mincount is the minimum number of posts a category must have to appear in the resulting tag cloud * numelements the number of categories to show * before what to put before each category * after what to put after each category * startcol the color for the categories with less posts * endcol the color for the categories with more posts ==Comments and Feedback== I love them, so please don’t be shy and write something at the category cloud homepage (http://www.mapelli.info/category-cloud/category-cloud-15) Full Text Feed […]

  44. […] abzukürzen und den vollen Text erst nach einem Mausklick auf einen Verweis anzuzeigen. Das „Full Text Feed Plugin” ändert dies […]

  45. […] The plug-in is called Full Text Feed from the folks at CaveMonkey50.com. […]

  46. Celtic Spirit » Full feeds in WordPress 2.1
    on Feb 28, 2007 at 12:34 pm

    […] this behaviour doesn’t appeal to you, you can get your really-full full text feed back with the Full Text Feed plugin by Cave Monkey 50. This entry was posted on Thursday, March 1st, 2007 at 1:33am. Responses can be […]

  47. […] Full Text Feed […]

  48. […] Full Text Feed 1.03 […]

  49. […] download the plugin here from cavemonkey - Full Text Feed Full Text Feed, Wordpress 2.1, More […]

  50. […] Feedburner Feed Replacement 2.2 * FeedWordPress 1.981 * Full Text Feed 1.0.3 * WP-Cron […]

  51. Wordpress…stuff at iand.net
    on Mar 3, 2007 at 9:09 am

    […] the purpose of feeds in my opinion and…well…it just sucks. Thankfully there’s a plugin - where would we be without plugin authors filling the […]

  52. Celtic Spirit » About
    on Mar 3, 2007 at 3:14 pm

    […] Full Text Feed […]

  53. […] will abbreviate the outgoing post to that point in your feed. This caught many off guard. The Cavemonkey50.com Full-feed WordPress Plugin reinstates your feeds to full length, whether or not you use the “more” […]

  54. […] one day, someone from Devlounge, replied to my question about this problem and directed me to a Full Text Feed plugin on cavemonkey50.com. I’ve quickly installed this plugin and my posts are displayed as […]

  55. […] often guilty of. Wordpress 2.1 truncated posts in the feed when you used a <more> tag but the Full Text Feed plugin fixes that bug. In fact, the Collapsible More tag that I now use even lets you open the full post […]

  56. Really Bad Eggs » Wordpress Roundup
    on Mar 10, 2007 at 4:25 pm

    […] don’t know what they’re smoking over at Wordpress but the Full Text Feed plugin restores correct,  full-article RSS feeds to Wordpress 2.1.   If you don’t have it, […]

  57. […] has to visit your site to finish reading the post. To keep from sending partial feeds, use the Full Text Feeds Plugin. Since we will now have a large reader base not visiting the site, we need to utilize the […]

  58. […] . (continues) […]

  59. […] Install Full Text Feed Wordpress plugin provided by Cavemonkey50 […]

  60. […] Full Text Feed 1.03 Prevents WordPress 2.1+ from adding a more link to your website’s feed. By Ronald Heft, Jr. […]

  61. […] Full Text Feed v1.03 by Ronald Heft, Jr. […]

  62. Webby Thoughts
    on Mar 20, 2007 at 3:05 pm

    […] Full Text Feed - I hate partial feeds. The WordPress 2.1.2 upgrade made partial feeds the default with no way to turn them off. This plugin fixes that and I will be a happy man when all my blogs use this. […]

  63. […] of WordPress 2.1 this is no longer the case. I managed to get round this problem by installing the Full Text Feed plugin from […]

  64. […] full RSS feeds even if you are using the more tag. Thus, I was able to look for a plugin dubbed as Full Text Feed plugin. Just go to the plugin page and download the file. Extract the zip file and upload the file to your […]

  65. links for 2007-03-23
    on Mar 23, 2007 at 7:37 pm

    […] Full Text Feed · cavemonkey50.com “WordPress 2.1 introduces a nasty “featureâ€? to feeds. Instead of abiding by your feed preferences, WordPress will truncate your feed’s content anywhere you insert a tag. Full Text Feed undos this >” (tags: feeds feed rss wordpress syndication plugin more furtherreading wordpress2.1 upgrade) […]

  66. […] Full Text Feed - There is a huge debate on whether you want to use full text RSS feeds or partial RSS feeds. Decide for yourself, but personally, you should be using full. Change the option under Options | Reading | Syndication Feeds | Change from partial to full. This will work, but if you split your long posts with the <!

  67. […] Full Text Feed […]

  68. […] Full Text Feed · cavemonkey50.com: WordPress 2.1 introduces a nasty “featureâ€? to feeds. Instead of abiding by your feed preferences, WordPress will truncate your feed’s content anywhere you insert a tag. Full Text Feed undos this functionality, allowing your feeds to contain the full text regardless of usage.     […]

  69. […] Full Feed […]

  70. Increase Your RSS Feed Readers
    on Apr 2, 2007 at 2:00 am

    […] button. If you like to use the <more> tag in Wordpress, then use the Full Feed Plugin so that your posts aren’t truncated in the […]

  71. […] Full Text Feed […]

  72. […] wordpress2.1 […]

  73. […] to overcome this particular problem, you can use the full feed plugin from cavemonkey50.com and that will display the full feeds without worrying about the fact that you are using more […]

  74. Top Wordpress Plugins | Latest News
    on Apr 10, 2007 at 4:35 am

    […] podcasters and commercial publishers promote, deliver and profit from their content on the Web. - Full Text Feed - Use full text RSS feeds or partial RSS feeds. Decide for yourself, but personally, you should be […]

  75. […] - thanks to a very smart blogger I now have a plugin that resolves the issue. So for those of you who are RSS centric, sorry about […]

  76. […] Full Text Feed will make Wordpress display full content in feeds regardless of the presence of the <!–-more-–> tag. […]

  77. […] podcasters and commercial publishers promote, deliver and profit from their content on the Web. - Full Text Feed - Use full text RSS feeds or partial RSS feeds. Decide for yourself, but personally, you should be […]

  78. […] Full Text Feed […]

  79. […] Ronald Heft, Jr for Full Text Feed. […]

  80. Full Text Feed - DevelopeNet.com
    on Apr 13, 2007 at 10:05 am

    […] WordPress 2.1+ from adding a more link to your website�fs feed. Author: Ronald Heft, Jr. Plugin Page Attached […]

  81. […] Uno de los problemas de la versión 2.1 de WordPress es que tiene un bug que no permite los feeds completos ya que añade siempre un “more”. Lo bueno de tener una comunidad como la de WP es que no hay que esperar a una próxima versión para resolver el problema. Ya  existe un plugin para eliminar ese tema de nuestras preocupaciones: Full Text Feed […]

  82. […] there seems to be an easy solution to this problem: Full Text Feed plugin that prevents WP2.1+ from adding “more” tag to the blog […]

  83. WorldIV » RSS and WordPress 2.1
    on Apr 18, 2007 at 10:21 pm

    […] I did!) to allow RSS readers to access the full story (which seems only fair). Fortunately, the Full Text Feed by CaveMonkey50 neatly solves that problem. My apologies to any aggregators or RSS junkies who have […]

  84. […] is no way to switch off this behavior in standard Wordpress but I (well Google) found a simple plugin for Wordpress from cavemonkey50 that appears to fix the […]

  85. […] Full Text Feed - Prevents WordPress 2.1+ from adding a more link to your website’s feed. […]

  86. […] huge thanks goes out to Staska.Net who pointed me to Ronald’s fix for the new “feature” in WordPress 2.1 that cuts off your RSS feeds at the <!– more […]

  87. Full Text Feed Plugin
    on Apr 26, 2007 at 7:33 am

    […] where you insert a <!–more–> tag (to divide the post into half)… You can install the Full Text Feed plugin to remove the “more…” link and show the complete post content to your feed […]

  88. […] Download Full Text Feed Wordpress Plugin Tags: plugins, tips, wordpress Questo articolo e’ stato pubblicato il 26 Aprile 2007 nella categoria Tips. Condividi l’articolo, lascia un commento o esprimi la tua opinione nel forum. […]

  89. The OS Quest » Weekly Summary
    on Apr 29, 2007 at 9:44 pm

    […] the <more> tag. (btw, that’s not the exact tag). Thanks to a Wordpress plugin called Full Text Feed which fixes the […]

  90. […] have an option to allow full feeds when using the more tag, there is a plugin to solve the problem. Full Text Feed is a WordPress plugin to remove all legitimate excuses for not serving full […]

  91. maggit » Feed Completo en Wordpress 2.1
    on May 4, 2007 at 8:22 pm

    […] linux :-P, googleando por ahí me encontré un par de plugins que solucionaron el problema  Full Text y […]

  92. […] him a few subscribers in the long run. I would suggest either not using the more tag or installing Full Text Feed, a plugin that prevents Wordpress from adding the more link to your […]

  93. […] you’re not comfortable making changes to your WordPress installation, there are a few plugins that are supposed to do the same thing. I’ve never used them, but try them out and see if […]

  94. […] realise that David Culpepper actually suggested a plugin which did exactly what i needed called full text feed. I’ve got absolutely no idea how i missed that link but regardless, a huge thank you to David […]

  95. Reputação, Ass-of t, Expresso e feeds
    on May 9, 2007 at 4:12 pm

    […] ao plugin full feed os assinantes deste blog recebem agora os artigos completos no seu agregador ou email preferido, […]

  96. RSS 2 MAIL ? « business-commando
    on May 10, 2007 at 3:58 am
  97. Full Feeds | PatchLog
    on May 11, 2007 at 5:52 am

    […] and because wordpress 2.1 also splits the feeds when it finds the more tag I had to install the Full Text Feeds plugin created by Ronald […]

  98. OTWOMD » Feed Famine
    on May 11, 2007 at 8:43 am

    […] with lol). The problem was not on the plugin itself because believe it or not, I was using 2 “more-tags killer“. The problem was in the feed burner services: I activated my “Smart feed” […]

  99. […] from just dropping it into your WordPress’s plugins directory and activating it. Get it from here. Posted on May 13th 2007 by Sian Siew | Categorised as Tips & Tweaks, Open Source, RSS, Web, […]

  100. Why I’m Glad Google Isn’t Laser-Accurate
    on May 14, 2007 at 10:41 am

    […] didn’t turn up a plugin for me, but it did turn up another - a plugin that will display the full content of each article within my feed. Cutting off the feed contents when a "more tag" is used is a "feature" that […]

  101. […] Full Text Feed, […]

  102. Awesome Wordpress plugins at Netsua.com
    on May 16, 2007 at 6:14 am

    […] Full Text Feed - Wordpress 2.1 makes it so your RSS feeds are cut off after the <–more–> tag, making the user visit your website. This fixes that. […]

  103. […] Visit […]

  104. […] Full Text Feed — плагин, который предотвращает добавление ссылки “Читать далее” в ваш RSS-поток в Wordpress 2.1+, т.е. в rss-потоке всегда будут отображаться полные статьи, даже если в тексте вы использовали тег <!–more–>. […]

  105. Daves Blog » Blog Archive » full feed
    on May 23, 2007 at 6:09 pm

    […] es jetzt, dank eines Plugins, immer den kompletten Artikel im Feed zu lesen. Das Plugin nennt sich Full Text Feed. Ich hoffe, es funktioniert auch. Und zum Testen habe ich einen dezenten RSS-Button hinter dem […]

  106. […] a heads up to all you WordPress users out there. I have released a new plugin called Full Text Feed. Full Text Feed specialized in one thing - making your RSS feed full text. Why would you need such […]

  107. […] those that use the MORE tag for WordPress, I urge (beg, actually) you to use the Full Feed plugin to allow full posts to be […]

  108. […] Instead of duplicating the whole content, you may use just an excerpt. As explained in “Customizing the Read More“, you may replace the_content() PHP function in your theme with the_excerpt() which will show up the first 55 characters of the post instead of the whole post. Since the Wordpress 2.1 release Wordpress supports the <!–more–> tag that indicates excerpt end on every post. Only problem with that the more tag is that it also cuts the post on your RSS feed, which you fix by using the “Full Text Feed” Wordpress plugin. […]

  109. […] Full Text Feed · cavemonkey50.com WordPress 2.1 introduces a nasty “feature” to feeds. Instead of abiding by your feed preferences, WordPress will truncate your feed’s content anywhere you insert a < !––more––> tag. Full Text Feed undos this functionality, allowing your feeds (tags: ja wordpress plugin rss) […]

  110. […] Full Text Feed: I use the “read more” function in my posts (more page views!), but when you use that, it cuts your RSS Feed also, but this plugin solves that, and sets your RSS Feed to “full text” even if you use the “read more” thingy. […]

  111. wordpress info
    on May 30, 2007 at 7:04 am

    Pridėkite daugiau informacijos į blogo feedus…

    Informacijos srautai (angliškai feeds, toliau feedai) yra labiausiai besiplečianti interneto technologija pasaulyje. Kodėl? Tai technologija, kai informacija pati ateina pas skaitytoją. Pavyzdžiui aš labai daug informacijos gaunu per feedų skait…

  112. DT blogi
    on Jun 3, 2007 at 12:16 pm

    NB! WordPressiga blogijad, täistekstivoogusid, palun…

    WordPressi versioon 2.1 tõi kaasa ebameeldiva uuenduse — blogi RSS-voos katkevad postitused alates <!––more––> tag‘ist. Valdav enamik blogijaid kasutab seda tag‘i, et blogi esileheküljel ilmuksid vaid lugude sissejuha…

  113. […] 2007-6-4 增加插件Full Text Feed,由于文章中加了标记,导致Feed中无法全文输出,使用该插件在Feed中去除。 […]

  114. […] Full Text Feed v1.03 by Ronald Heft, Jr. […]

  115. […] But there’s a plugin to avoid this thing from happening - it’s the Full Text Feed. […]

  116. Uso del Excerpt en el SEO | adseok
    on Jun 10, 2007 at 4:02 pm

    […] que también corta los feeds, que no se mostrarían completos. Para evitar eso, existe un plugin - Full Text Feed - que anula los excerpts en los feeds para esta […]

  117. […] You may want to subscribe to my RSS feed. Or if you prefer, Subscribe by Email. Thanks for visiting!Full Text Feed by cavemonkey is a plugin for WP 2.1 and above to fix the <! more > partial feature in your […]

  118. […] Full Text Feed - Again, I’ve already discussed why this is a necessity. It concerns all who use the […]

  119. davidak » Blog Archive » Full Text Feed
    on Jun 15, 2007 at 11:01 am

    […] einen Blog hat, der auf Wordpress basiert, kann sich das Plugin HIER […]

  120. […] Full Text Feed by Ronald Heft […]

  121. […] all you WordPress users out there. <!–more–> I have released a new plugin called Full Text Feed. Full Text Feed specialized in one thing - making your RSS feed full text. Why would you need such […]

  122. […] 全文输出插件 Full Text Feed […]

  123. Full Text Feed | wordpress blog xqxp.com
    on Jun 20, 2007 at 12:18 am

    […] Full Text Feed,是一个全文输出的feed. […]

  124. […] download the Full Text Feed plugin. Extract and upload the full_feed.php file to your wp-content/plugins folder. After this, […]

  125. […] admin to deliver full feed will not change that fact. That is unless you install a nifty plugin “Full Text Feed” that overwrites that setting and removes “more” tag from RSS feed. Do install it – it […]

  126. […] Full Text Feed. Wordpress sistema turi tokią blogą savybę RSS sraute nerodyti pilno straipsnio jeigu jo tekste yra naudojama <!––more––> žymė. Šis įskiepis ištaiso šią problemą ir rodo visą straipsnį nuo pradžios iki galo. Puikus nedidelis įskiepis, kurį užtenka tik aktyvuoti. […]

  127. […] Full Text Feed Normalerweise werden die Beiträge im RSS Feed nur bis zum MoreTag angezeigt. Full Text Feed liefert ungeachtet des MoreTags den vollen Inhalt des Artikels aus. […]

  128. […] en entiers dans les flux RSS. Pour remédier à ce problème il suffit d’installer le plugin Full Text Feed qui permet à WordPress d’afficher l’intégralité des articles dans son flux RSS. […]

  129. […] Full Text Feed v1.03 NEW! […]

  130. […] Full Text Feed v1.03 by Ronald Heft, Jr.: Vital plugin […]

  131. RSS Feed 改为全文输出 | 博客学堂
    on Jun 28, 2007 at 10:05 am

    […] 要解决这一问题,有很多种办法。如果您懒得去修改WordPress文件,可使用Full Text Feed插件,将其上传到plugin目录,激活,Feed为即为真正的全文输出。 […]

  132. […] FEED IS NOW AVAILABLE. Finally I’ve managed to install the plugin to display the full text feed even if you truncate your posts with the Wordpress “<-more->” […]

  133. […] temps qui finit par lasser). Pour cela, Fran6 nous a amené la solution : il s’agit du plugin Full Text Feed 1.03 qui suprrime de vos flux RSS le […]

  134. hey « Linksome
    on Jun 30, 2007 at 1:17 am

    […] on June 30th, 2007. Just a heads up to both potential readers and Wordpress users. Cavemonkey50.com has released a new Wordpress plugin that strips the “more” link from your feed source. In the […]

  135. WordPress Plugins
    on Jul 1, 2007 at 6:06 pm

    […] Full Text Feed […]

  136. […] I just found a plug-in (Full Text Feed) and installed it. I hope it works! Apparently this is a bug in WP 2.1. This entry was posted on […]

  137. […] how much of the content actually shown in teaser. If you go this route I highly recommend using a “Full Text Feed”  plugin to avoid annoying your subscribers by providing them castrated feed. There is much […]

  138. […] Full Text Feed corrects an annoying feature introduced in Wordpress 2.1 to only provide summarized feeds. This […]

  139. […] your full text feed. If you use Wordpress engine you can add Full Text Feed plugin, after that your feed will alway full text even when you add –more– / read the […]

  140. […] Full Text Feed […]

  141. […] Full Text Feed […]

  142. 使用Wordpress感受 at Jvstin
    on Jul 6, 2007 at 10:50 am

    […] Full Text Feed 1.03 (让RSS订阅显示完整的文章) […]

  143. wp更新插件和模版 at Zhccc’s Blog.
    on Jul 7, 2007 at 1:48 pm

    […] Full Text Feed:   全文输出 […]

  144. […] Full Text Feed: Con este plugin, tu feed se vera completo cuando utilices el comando <!–more–> en tus entradas. Por defecto WordPress cortaría el feed y daría una mala imagen a tus lectores habituales […]

  145. […] Full Text Feed – 防止 WordPress 2.1+ 增加一个 more 链接到你网站的 feed 和给你订阅者全文的 feed。除非你认为自己等同于 Jack London 或者 Ernest Hemingway(译者注:不知道着两个家伙是谁,晕下自己),我强烈建议你安装这个插件。 […]

  146. Current Crop of Plugins » Solo Technology
    on Jul 12, 2007 at 12:39 am

    […] Full Text Feed — The “modern” versions of WordPress truncate the feed if the more tag is used in the post. So far, I’m not a fan of that and this plugin clobbers it. […]

  147. How To Get An RSS Feed
    on Jul 13, 2007 at 9:53 am

    […] blog owner but a nifty plugin that will force Wordpress to generate a full rss feed can be found here. If you enjoyed this post, make sure you subscribe to my RSS feed! Related Posts: WordPress 2.1 […]

  148. […] Full Text Feed – 防止 WordPress 2.1+ 增加一个 more 链接到你网站的 feed 和给你订阅者全文的 feed。除非你认为自己等同于 Jack London 或者 Ernest Hemingway(译者注:不知道着两个家伙是谁,晕下自己),我强烈建议你安装这个插件。 […]

  149. […] Full Text Feed ~ previne que adicione um link “Leia mais” no […]

  150. […] Full Text Feed - Evita que os feeds saiam pela metade, quando adicionada a tag “read more” aos artigos. […]

  151. Full Text Feed at Webpalet
    on Jul 18, 2007 at 6:37 am

    […] Dat je het volledige artikel binnenkrijgt, is te danken aan de eenvoudige maar doeltreffende plugin voor WordPress ‘Full Text Feed‘. […]

  152. […] Full Text Feed. Now that you have your feed optimized, you need to make sure subscribers are getting what they want! A problem introduced in WordPress 2.1 is that if you use the <!–more–> tag on your posts, well when they’re sent out as a feed, they’ll be cut off. For some reason WordPress 2.1+ cuts off posts after the <!–more–> when they’re included in feeds. As a side note, I use the <!–more–> on my index page to keep things short and clean. If you want to know more about the <!–more–> tag, check out this WordPress site. […]

  153. […] Full Text Feed - This plugin removes tag from your feeds. This problem was introduced in Wordpress 2.1 as a feature. I hate this feature since nowdays its a bad idea to offer partial feeds. […]

  154. […] Full Text Feed 1.03 输出全文订阅,不用改句代码也行,为了以后升级方便就不改了。 […]

  155. […] Full text feed : annule la balise “more” dans votre flux. […]

  156. […] Meta Plugin 修改文章meta 的插件,利于seo。 4.FeedBurner FeedSmith rss种子的插件 5.Full Text Feed 防止feed里的文章被<!–more–>截断。 6.Google (XML) Sitemaps google […]

  157. […] Full Text Feed – 防止 WordPress 2.1+ 增加一个 more 链接到你网站的 feed 和给你订阅者全文的 feed。除非你认为自己等同于 Jack London 或者 Ernest Hemingway(译者注:不知道着两个家伙是谁,晕下自己),我强烈建议你安装这个插件。 […]

  158. […] when I subscribe and I always treat my readers same way as I would like to be treated. There is a great plugin that allows you to provide full feed RSS with latest WordPress, take advantage of […]

  159. 13 steps » Blog Archive » Feed readers
    on Jul 28, 2007 at 5:12 pm

    […] provided you’ve filled in the alt or title description, I’m a little lazy with that. Full Text Feed: Prevents wordpress from stripping everything after the more tag in a feed. Gravatar: For […]

  160. […] Full Text Feed 1.03 (Ronald Heft, Jr.): je me réjouis d’avoir pu mettre tout récemment la main sur ce plugin, qui évite la coupure de mes billets après le chapo introductif (consécutivement à l’emploi de la balise « more ») à ceux qui les lisent via un flux. […]

  161. […] Full Text Feed plugin by Ronald Heft, Jr. […]

  162. Useful Wordpress Plugins - Yet More
    on Jul 30, 2007 at 7:21 am

    […] Full Text Feed: I already have a full text feed open for this blog, but if I had to use to more tag for some reason, all my posts will be cut off in the RSS reader, but with this plugin that can be avioded. This seems to be a wordpress bug. […]

  163. […] update: 全文输出插件 Full Text Feed […]

  164. […] Full Text Feed - Prevents WordPress 2.1+ from adding a more link to your website’s feed. […]

  165. […] Wordpress 的人多,遇到同样问题的人也多,这就有了解决方案——下载一个名为 Full Text Feed 的插件 然后安装立刻万事ok。因为 feedburner […]

  166. […] page - a life saver if your connections as rubbish as mine! I also love the full text feed plugin, Full Text Feed

  167. […] page - a life saver if your connections as rubbish as mine! I also love the full text feed plugin, Full Text Feed

  168. […] #10 - Full Text Feed […]

  169. […] feed and the tag] [Full Text Feed Plugin] — […]

  170. Should i offer full text RSS feed or not?
    on Aug 7, 2007 at 4:10 am

    […] use the <!–more–> tag. That’s why you might want to use this plugin here, Cavemonkey Full Feed, and there you […]

  171. […] Full Text Feed 1.0.4 […]

  172. […] of the new versions of WP - its incredibly annoying, you want a plugin called full text feed. Full Text Feed

  173. […] Folk framelder sig i stort antal et abonnement, hvis bloggen kun tilbyder RSS-feeds med en del af hvert blogindlæg på. Medmindre du har over ti daglige indlæg (og selv der!), skal du bringe hele blogindlægget i RSS-feedet. Der er andre måder at logge folk over på bloggen og klikke på reklamer. De nyere versioner af WordPress indeholder en bug, så du ikke kan bringe fulde RSS-feeds. Problemet løser du via et plug-in, som kan hentes gratis her: http://cavemonkey50.com/code/full-feed/ […]

  174. […] videre med det, så det var dejligt at Britt kunne fortælle mig om et gratis plugin til af give fulde feeds. Du kan finde det pågældende plugin her: http://cavemonkey50.com/code/full-feed/ Get Social, […]

  175. […] nombre es Full Text Feed y es muy simple de instalar y activar sin configuración […]

  176. […] activated: Akismet (comment spam protection), cforms II (form manager), full text feed (which was working fine until a little over a week ago), ShareThis (social bookmarking support), […]

  177. […] Full-Text Feed: empêche WordPress de couper nos articles avec le lien «More» dans nos flux RSS. […]

  178. […] Short-Feed zu kastrieren. Sehr nützlich also. Alternativ zu Franks Plugin könnte man auch Full Text Feed von Ronald Heft, Jr. nehmen - just in […]

  179. […] whenever I use the <!––more––> tag in my post, it truncates the feed. Thanks to this easy to install plugin, I can now run full text […]

  180. […] Full Text Feed In wordpress 2.1 it automatically places a read more link after the first few lines in your feed, […]

  181. […] Full Text Feed: as versões iniciais do Wordpress 2.1 possuiam um problema de corte nos fees. Esse plugin resolve o problema. […]

  182. n-blue | » Full Text Feed
    on Aug 16, 2007 at 11:59 pm

    […] Full Text Feed […]

  183. My Favorite WordPress Plugins
    on Aug 17, 2007 at 4:33 pm

    […] Full Text Feed: Prevents WordPress 2.1+ from adding a more link to your website’s feed […]

  184. How To Show Post Excerpts in Wordpress
    on Aug 17, 2007 at 4:53 pm

    […] you use either of these methods. However, you can get around this by installing Ronald Heft’s Full Text RSS feed […]

  185. maggit » Feed Completo en Wordpress
    on Aug 19, 2007 at 12:18 pm

    […] planeta linux , googleando por ahí me encontré un par de plugins que solucionaron el problema  Full Text y CompleteRss. Peque, felicidades por tú próximo viaje, cuentas con todo mi apoyo aunque te voy a […]

  186. […] »@Feed«-Plugin die Volltext-Option abschalten. Nun das »Full-Text-Feed«-Plugin installieren und das Wordpress-Fehlverhalten ist behoben, ohne dass der RSS 0.92 zum Volltext-Feed […]

  187. […] Full txt feed permet de ne pas tronquer le flux RSS lorsqu’on utilise la balise <!–more–> .  […]

  188. […] del servidor y mejora de forma considerable los tiempos de respuesta. También he puesto el plugin Full Text Feed, que permite mostrar los feeds completos aunque hayas utilizado una etiqueta […]

  189. […] the site saves time as all the content is right there in one spot. So yesterday I installed “Full Text Feed” a WordPress plugin which resolves the […]

  190. […] Full Text Feed - 能够显示全文的 Feed。 […]

  191. […] Meter Allows you to see what people are searching for on your blog. Full Text Feed Removes the <!

  192. 17 plugins pour boosté WordPress
    on Aug 24, 2007 at 4:32 pm

    […] Full-Text Feed: empêche WordPress de couper nos articles avec le lien «More» dans nos flux RSS. […]

  193. […] Download and activate Cavemonkey’s Full Text Feeds plugin. […]

  194. New and Improved Feed | Game Makker
    on Aug 26, 2007 at 8:54 am

    […] plugin is Full Text Feed by […]

  195. […] Full Text Feed – 防止 WordPress 2.1+ 增加一个 more 链接到你网站的 feed 和给你订阅者全文的 feed。除非你认为自己等同于 Jack London 或者 Ernest Hemingway(译者注:不知道着两个家伙是谁,晕下自己),我强烈建议你安装这个插件。 […]

  196. […] you place a <!–more–> tag. You can stop that “feature” by using the Full Text Feed plugin. If you don’t want to decide whether you should use full content feeds or not (there are […]

  197. […] Full Feed - WordPress 2.1 introduces a nasty “feature” to feeds. Instead of abiding by your feed preferences, WordPress will truncate your feed’s content anywhere you insert a <!––more––> tag. Full Text Feed undos this functionality, allowing your feeds to contain the full text regardless of <!––more––> usage. […]

  198. […] where you want, i suggest that if you use the <!

  199. […] Related Posts Akismet Arctic’s Internal Alexa Redirect Full Text Feed Google XML Sitemaps Permalink Redirect PinYin Slug Subscribe Remind WordPress Database Backup […]

  200. […] простынку из пары мегабайт текста не очень-то хочется; Full Text Feed - этот плагин отдает в RSS текст статьи целиком, даже […]

  201. […] #10 - Full Text Feed […]

  202. […] Full Text Feed · cavemonkey50.com (tags: wordpress plugin) […]

  203. […] Full txt feed permet de ne pas tronquer le flux RSS lorsqu’on utilise la balise . […]

  204. […] 提供完整的 RSS feed:虽然我不清楚你的喜好,但是我个人比较喜欢在订约时能够得到完整的信息。对待我的 BLOG 的订阅者我也喜欢用这样的方法。最新版的 WordPress 可以使用一个叫做 Full Text Feed 的插件完成这个功能。好好利用一下吧。 […]

  205. […] Full Text Feed v1.04 by Ronald Heft, Jr. — Prevents WordPress 2.1+ from adding a more link to your website’s feed. Readers who enjoy reading your site via RSS in a feed reader are annoyed when there’s a link like “Read more” in the text of a post. The reason why readers subscribe to websites is to prevent them from having to visit. Kind of like how we subscribe to newspapers so we don’t have to go door to door asking our neighbors about what is going on in town. […]

  206. […] Full Text Feed ~ mostra o feed completo mesmo que você use o More. Se você usasse sem o plugin, ele cortaria e colocaria um link. […]

  207. […] Full Text Feed - Current Wordpress versions cut-off feed content wherever a <!–More–> tag is placed. Full Text Feed fixes this problem, putting your entire post in the feed. […]

  208. Full Text Feed Plugin For Wordpress
    on Sep 6, 2007 at 10:30 am

    […] 相關插件的下載點: Full Text Feed […]

  209. […] LifeHacker‘e я нашёл решение, установил плагин Full Text Feed (плагин для подачи полной RSS-ленты при использовании […]

  210. […] Full Text Feed prevents WordPress 2.1+ from adding a “more” link to your blog feed. […]

  211. Top 15 wordpress plugins | Slevi
    on Sep 13, 2007 at 9:49 am

    […] Full text feed - Since I’ll be using excerpts from now on so the main page will be able to hold more entries at once this one is definitely nice to bring the feeds back to length again. […]

  212. […]   Full Text Feed:全文输出feed的一个插件,输出feed时不会被more标签打断。 […]

  213. 博客学堂使用的WordPress插件
    on Sep 15, 2007 at 3:03 am

    […] Full Text Feed : 实现Feed全文输出; […]

  214. […] CaveMonkey Full Text Feed - This plugin is much important if you run full feeds in your blog. When you run full feeds but use the more tags tags with in the post to restrict the part of the post after it to be visible only in the permalink/single post page, then the feed is no more full as displays the post content before it and cuts-off the rest of the content in feed view. By installing this plugin the posts would remain full feed even if you use more tag with in feeds. […]

  215. […] Full Text Feed - feed全文输出 […]

  216. Рефакторинг Блога
    on Sep 17, 2007 at 6:14 pm

    […] Установил плагин Full Text Feed. Теперь в фид отдается полный текст статьи. Тема […]

  217. […] full article RSS feed WordPress plugin can be found here and installs as […]

  218. 插件,插件 | Vern
    on Sep 19, 2007 at 1:06 am

    […] Full Text Feed 尽管有的时候我也会在首页阉割自己的文章,假装很美观,但 feed 的输出仍然是全文的,在这一点上我就很不佩服某些博客,比如说《犯贱报》,哈哈,虽然我跟 nings 一样每次也都会去点开他的“阅读更多”。 […]

  219. Why feed-reading users are important
    on Sep 19, 2007 at 3:30 pm

    […] often guilty of. Wordpress 2.1 truncated posts in the feed when you used a <more> tag but the Full Text Feed plugin fixes that bug. In fact, the Collapsible More tag that I now use even lets you open the full post […]

  220. […] Full Text Feed — плагин, который предотвращает добавление ссылки “Читать далее” в ваш RSS-поток в Wordpress 2.1+, т.е. в rss-потоке всегда будут отображаться полные статьи, даже если в тексте вы использовали тег <!–more–>. […]

  221. […] Full Text Feed – output feed in full text. […]

  222. […] Full Text Feed — 防止 WordPress 2.1+ 增加一个 more 链接到你网站的 feed 和给你订阅者全文的 feed。除非你认为自己等同于 Jack London 或者 Ernest Hemingway(译者注:不知道着两个家伙是谁,晕下自己),我强烈建议你安装这个插件。 […]

  223. […] have a consistent large readership. To display full feeds I use and recommend Cave Monkey’s Full Text Feed, a very handy pluging and requires only uploading and activation, nothing […]

  224. […] 4. Full Text Feed […]

  225. […] you have a consistent large readership. To display full feeds I use and recommend Cave Monkey’s Full Text Feed, a very handy pluging and requires only uploading and activation, nothing […]

  226. […] Full Text Feed - Full Text Feed undos this functionality, allowing your feeds to contain the full text regardless of “more’” usage […]

  227. […] 4. Full Text Feed […]

  228. Customizing WordPress - Your Website Profit
    on Sep 26, 2007 at 10:52 am

    […] I installed FeedSmith to manage my feed redirection to FeedBurner, and Full Text Feed to make sure all posts are wholly visible to feed readers. You should subscribe for my full feed to […]

  229. […] kicked my arse into gear and installed a plugin called full text feed. I shall update this straight after to let you know if it works or not. If it does, I implore you […]

  230. […] Full Text Feed […]

  231. […] Full Text Feed by Cavemonkey […]

  232. […] to the addition of the<!–more–> tag in all posts, but I found the solution - the Full Feed Text or c6 Excerpt plugin. Install either and you are good to […]

  233. […] Full Text Feed FEED全文输出插件 […]

  234. Sea Slugs! Anime Blog » More Tag In RSS
    on Sep 30, 2007 at 11:58 pm

    […] how your page looks, it kinda defeats the purpose of offering a full feed. Fortunately, the Full Text Feed plugin will allow you to use the <–more–> while still offering truly full feeds. I believe […]

  235. […] have also installed the Full Text Feed Plugin (Wordpress 2.3 Compatible), I figured, in the ever continuing battle of full versus read more […]

  236. Encore des changements … | Webinventif
    on Oct 3, 2007 at 8:02 am

    […] Full Text Feed (Permet d’avoir le flux RSS complet) […]

  237. […] Full Text Feed This is a plugin I picked up on the compatibility list I never got around to look for but always wanted. I am a full text feed advocate, but the standard WordPress configuration will cut your post short if you use the <!–more–> command in your post. This plugin solves the problem. Generally speaking I don’t use the <!–more–> when I post - it really doesn’t matter that your post is featured on the home page, but it might come in handy if you have a very long post to publish: it might be the case when you publish a full text article […]

  238. […] thanks to this plugin, we are back in business! Sponsored Link: /* */ Sponsored link: Earn $$ with […]

  239. Aggiornamento al WordPress 2.3
    on Oct 5, 2007 at 2:58 am

    […] Full Text Feed Questo è un plugin che avrei voluto ma che non ho mai trovato il tempo di cercare - era nella lista dei compatibili per 2.3 e l’ho preso ! Permette di utilizzare il <!–more–> nel post e di pubblicare per intero il post nei feed. […]

  240. […] Poster 3.0 5) Bad Behavior 2.0.10 6) Evermore 2.2 7) Exec-PHP 3.0 Feedburner Feedsmith 2.2 9) Full Text Feed 1.04 10) Google XML Sitemaps 3.0 11) InstantUpgrade 0.2 12/13/14/15) Semiologic Related Plugins 2.14 16) […]

  241. WordPress全文输出插件Full Text Feed
    on Oct 8, 2007 at 3:35 am

    […] 插件下载 […]

  242. […] Full Text Feed — 防止 WordPress 2.1+ 增加一个 more 链接到你网站的 feed 和给你订阅者全文的 feed。除非你认为自己等同于 Jack London 或者 Ernest Hemingway(译者注:不知道着两个家伙是谁,晕下自己),我强烈建议你安装这个插件。 […]

  243. […] Во-первых, ты достоин полного RSS-фида в своей читалке благодаря плагину FullFeed. […]

  244. […] Full Text Feed […]

  245. Optimize RSS and Atom Feeds for WordPress
    on Oct 11, 2007 at 11:20 am

    […] your feeds will still be cut off even after choosing the Full text option. To fix this, install the Full Text Feed […]

  246. […] было: if ( preg_match(’//’, $content, $matches) ) { стало: if ( preg_match(’//’, $content, $matches) && !is_feed() ) { 2) установить плагин Full-text feed and the more tag или Full Text Feed Plugin […]

  247. […] the <!–more–> tag and the Optional Excerpt feature. I just found the excellent Full Feed WordPress Plugin and that solved the […]

  248. […] Ho risolto finalmente il problema di WordPress che si ostinava a creare feed rss con solo la prima parte del post inclusa. Si trattava di una stupida scelta progettuale di WordPress stesso, introdotta a partire dalla versione 2.1. Per risolvere la cosa ho usato questo plugin. […]

  249. […] Full Text Feed […]

  250. […] ragioni di layout), genera il feed rss solo fino al “Continua a leggere”. Ora, grazie a questo ottimo plugin, sono riuscito a risolvere questo fastidioso problema ed a rendere nuovamente integrali i feed di […]

  251. […] Full Text Feed:FEED的时候可以全文显示 […]

  252. […] The more tag affects your RSS feeds as well - by default in wordpress the more tag affects your RSS feed as well as your homepage. I hate this. It is my biggest gripe against the more tag. I subscribed to your RSS feed so I could view your feed when and where I wanted not to just read a bit and then be forced back to your site. If I want to come and visit your site or comment on the post then I will. Don’t force me to - it’s rude! There’s a plugin stop this from happening - Full Text Feed. […]

  253. […] блог добавлен плагин для wp: Full Text Feed — плагин, который предотвращает добавление ссылки […]

  254. […] Some other plugins I have installed are : Search Everything, Feed Burner Feed Smith, and Full Text Feed. You can find more plugins at the WordPress Plugin Page. (if you find one you really like, let me […]

  255. […] Full Text Feed […]

  256. […] of my favorite plugins for WordPress feeds is Full Text Feed, a plugin that prevents WordPress 2.1+ from adding a more link to your website’s feed. Some of […]

  257. […] I really think this is a bug in WordPress but I did find a solution to fix it, it’s called Full Text Feed, a plugin that takes care of this and makes it all good again.  One of my RSS readers sent me an  […]

  258. WLF Blog | 让 WordPress RSS输出全文
    on Nov 4, 2007 at 8:44 pm

    […] update: 全文输出插件 Full Text Feed […]

  259. » Feeds Cortados en WordPress - TecnosWA
    on Nov 7, 2007 at 12:55 pm

    […] a esto encontre un post en Galder explicando que el paso por lo mismo y lo soluciono con el plugin Full Text Feed. Si alguien tiene el mismo problema, sigan leyendo que les explico como instalarlo (3 […]

  260. New WordPress plugin - FullFeed
    on Nov 7, 2007 at 6:27 pm

    […] update - thirteen minutes after I posted this, Carsten pointed out there is another plugin that does this exact same thing (as in fact named the same!). Go check out cavemonkey’s plugin. […]

Post a Comment