How To Split Long Posts and Pages in WordPress Into Multiple Pages

Sometimes Posts or Pages in pages in wordpress can get lengthy, which might bore the reader or can make the design look odd with its old length.Here’s how you can split you posts or pages into multiple pages using a simple shortcode in you post or page.

How To :

  1. Decide where in the page / post you want to the split and place this short code

    “<!—nextpage—>” [without quotes] and remember to insert this in the HTML editor.

    wp-pagination1
    wp-pagination-ex

  2. Now check if your theme supports pagination within posts and pages by looking for this piece of code in your single.php and page.php [ or a similar file according to the theme your using.]

    “<?php wp_link_pages(‘<p><strong>Pages:</strong> ‘, ‘</p>’, ‘number’); ?>”    [without quotes].

    wp-pagination-theme-code

    Incase you don’t find it in your theme, do insert it else you will not be able to see the page numbers of the post/page that it has been split into.Insert this code somewhere after or before the “the_content()” function.

  3. Note that the url will look something like this“http://www.xyz.com/post-title/1/”    — For Page 1
    http://www.xyz.com/post-title/2/”     — For page 2
  4. Now to the SEO part, you could use the canonical tag to eliminate the risk of duplicate content.
Similar Post  How To View and Uninstall Hidden Devices Drivers In Windows

6 comments

  1. Charlie Reply

    Thanks for this tip. I always wondered how it’s done. Now I know. Would you happen to know if this works withe WP-Pagenavi plugin?

  2. Numi Reply

    Great tip… If only it worked right in my theme. It seems that when the second page is populated with text, it doesn’t carry the formatting to the second page (ie:blockquote) Does anyone know the fix for this?

  3. lalit Reply

    Thanks! for the great tip.

    But there is one issue. When I click on the second page then It only shows the template images.

Leave a Reply

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.