↧
Answer by SatuWeb for How to ignore or disable nextpage tag?
Try to put <?php $GLOBALS['multipage'] = false; ?> in your loop.if doesn't show paginator in mobile: wp_is_mobile()$GLOBALS['multipage'] = false;I hope it is helpful for you
View ArticleAnswer by birgire for 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...
View ArticleHow to ignore or disable nextpage tag?
I have this site that uses the <!--nextpage--> tag in posts for pagination purposes. I want to disable pagination, but without deleting the tags for the database (maybe they'll want to use them...
View Article