Recently one of our users complained to us aboutΒ WordPress post paginationΒ hiding the full content in their RSS feed. After doing a quick research, it turns out that this is a WordPress core bug (#10984) that was reported 4 years ago and is still not fixed. In this article, we will show you how to fix the WordPress post pagination hiding content in RSS feeds.
The problem occurs when you split your WordPress posts in multiple pages, and if you have set RSS feeds to display full text, then your RSS feeds will only display the content of the first page of the post (i.e before Β tag).
Thankfully one of the contributors,Β Simon Wheatley, have posted a work around that fixes the bug.
All you need to do is add this code in your themeβs functions.php file or in aΒ site-specific plugin:
The above code adds a filter to the_contentΒ allowing the feeds to display full post content and ignoring the pagination (see more examples of how toΒ add content in your RSS feeds). Hopefully this issue will get resolved soon in a future version of WordPress. Until then this workaround will make sure that your subscribers get the full content in their RSS reader.
We hope this article helped you fix WordPress post pagination issue in RSS feeds. Let us know what you think by leaving a comment below or join us onΒ TwitterΒ andΒ Google+.