How to ignore or disable nextpage tag?
You can try to use the the_post filter, to override the content pagination, that takes place within the setup_postdata() function ( PHP 5.4+ ): /** * Ignore the <!–nextpage–> for content pagination. * * @see http://wordpress.stackexchange.com/a/183587/26350 */ add_action( ‘the_post’, function( $post ) { if ( false !== strpos( $post->post_content, ‘<!–nextpage–>’ ) ) { // Reset … Read more