• Hi, I’d like to ask if anyone knows of a way to paginate a post in the following manner

    <PREVIOUS 1 2 3 4 5 6 NEXT>

    I currently paginate my posts using the <!–nextpage–> tag but all it shows is

    Page 1 2 3 4 5 6

    Is there a way to have the <PREVIOUS and NEXT> links too? Digg style even?

    Thanks for your suggestions in advance.

Viewing 5 replies - 1 through 5 (of 5 total)
  • http://www.elektroelch.de/hacks/wp/pagebar

    Once installed, check out the options.

    Thread Starter akamaddisk

    (@akamaddisk)

    Thanks for the suggestion srikat, I’m trying this plugin but it doesn’t paginate POSTS, only the collection of posts. As I have wrote earlier I am interested in breaking a single post up into different sections and then have those sections paginated.

    Currently I can do that with the <!–nextpage–> tag to separate a particular POST into separate pages, but the pagination only shows as

    Page 1 2 3 4 5 6

    I’d like to know if I can separate ONE post in to different sections and have them paginated like this

    <PREVIOUS 1 2 3 4 5 6 NEXT>

    Thanks again.

    Thread Starter akamaddisk

    (@akamaddisk)

    Any takers on this?

    Single Post pagination with previous and next buttons?

    <PREVIOUS 1 2 3 4 5 6 NEXT>

    Thanks in advance.

    Moderator Samuel Wood (Otto)

    (@otto42)

    WordPress.org Admin

    What does your call to wp_link_pages() look like in your single.php? Because it can do this if you want it to, no plugin is needed.

    When you call wp_link_pages('next_or_number=number'), you’ll get the page numbering method. When you call it with wp_link_pages('next_or_number=next'), you get the next and previous page method.

    Generally, you use CSS styling to position these the way you want them positioned. It can’t do PREVIOUS 1 2 3 4 5 NEXT, but you could make it seem that way with some CSS. Or you can do three calls to wp_link_pages in a row, one to display the previous link, one to display the numbers, then one to display the next link.

    http://codex.wordpress.org/Template_Tags/wp_link_pages

    Check this review post. It does more than, what you’re asking.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Digg Style Post Pagination (not page pagination)’ is closed to new replies.