A post split into 3 pages
This post was (or: should be) split into 3 parts / pages - something you might consider doing with very, very long posts. This is just a sample here, so we aren’t making the post THAT long. NOTE: Not all wordpress themes are prepared to deal with this less commonly used Wordpress feature. If this theme does not split the post into three parts as it’s supposed to do, but you like the theme and want to use Pagination, too, you can fix the theme yourself by doing this:
In single.php, add this line
<?php wp_link_pages(); ?>
after the line that begins with
<?php the_content ...
and do the same in page.php, if you want to have the pagination in “Pages”, too. You can also fine tune the Wordpress pagination. To actually use pagination in your posts or pages, insert
<!-–nextpage-–>
… whereever you want the post or page to be split into parts. Make sure to insert that tag into the text while being in “HTML” (in WP 2.3.x and older: “Code“) mode in the Wordpress editor. If you’re on the main page of this blog, click through to the single post to see (or not see) the links to the parts 1, 2, 3 of this post at the bottom of each post part. The pagination should start right after this.

