Skip to content

How To Split Posts Into Multiple Pages In WordPress

Have seen websites splitting their posts in two or more parts? Yea, we all have seen that. It’s really a good idea to split posts into multiple pages for big posts, and it will also reduce your website’s bounce rate.

It’s really easy to split posts into multiple pages in WordPress without using any plugins or code. Adding a small code to your post will easily do the job. It’s called Post Pagination.

Just post the following code to wherever you want the next page to start:

<!––nextpage––>

WordPress already has a button for this code in its core, which you can enable by clicking here.

Is it not working on your WordPress? Then you would need to add the following code in your single.php loop:

<?php wp_link_pages(); ?>

This is the place where the post pagination will appear. That’s it!.

Leave a Reply

Your email address will not be published. Required fields are marked *