Answer by birgire for How to disable content pagination?
New content pagination filter in WordPress 4.4As of WordPress 4.4 we can use the content_pagination filter ( see ticket #9911 )/** * Filter the "pages" derived from splitting the post content. * *...
View ArticleAnswer by s_ha_dum for How to disable content pagination?
You can kill the "link pages" functionality in one filter by stripping the nextpage markers out of the post content:function kill_pages($posts,$qry) { if ($qry->is_single()) {...
View ArticleAnswer by Milo for How to disable content pagination?
EDIT - Now that 4.4 is out, you should use the content_pagination filter. See birgire's answer below.You can add formatting to raw post content by applying the content filters directly to...
View ArticleHow to disable content pagination?
I want to totally disable this functionality from WordPress because I'm implementing my own version of this with Javascript.When I try to grab all the content in a post via the get_the_content() or...
View Article