kheldon
Member
Posted 6 months ago #
Hi folks,
My WordPress feed gets cut off at the nextpage tag so only part of our relatively long articles is readable via feed.
Any way to fix this so that the feed ignores the nextpage tag and shows the full article? Without having to remove pagination of my articles?
Website: www.mmogamer.com
Feed address: http://feeds2.feedburner.com/themmogamer
Thanks,
Kheldon
kheldon
Member
Posted 6 months ago #
Still having a problem with this.
Is <!-nextpage-> supposed to cut of feed? If so, is there a way to change that behaviour or to paginate posts without using that tag?
jesseisrad
Member
Posted 5 months ago #
I'd like to know the answer to this as well, for the feed, but also to allow the option of seeing the whole post on one page (maybe a url www.website.com/permalink/full/)
I could tap the DB for the post, but then it would see the <!-- nextpage --> tags... need a way to strip those out.
jesseisrad
Member
Posted 5 months ago #
Ok, I've done some investigating and found that if this is declared before the posts output, it'll ignore <!--nextpage--> and display the full post:
<?php $pages[0] = $post->post_content; ?>
I imagine if you put this on the RSS feed includes (core files), you'll be good. Just remember to add that change back in if/when you update WP.
hope that helps!