Hi ..
I need to make 2 kind of pagination in the site alpha and numbers pagination .. is that possible ... any1 can help plz ?!
Hi ..
I need to make 2 kind of pagination in the site alpha and numbers pagination .. is that possible ... any1 can help plz ?!
any1 plz ?!
Where on your blog? Pagination for the top sections (main page, categories, archives)?
And alpha here means what exactly? Post title listings?
Where .... When list the category post
I mean alpha ... ABCDEFG .... Z ... wich will show just the post title which start to selected alpha !
Best I can do is point out the plugins I know of which handle numeric pagination:
http://dev.wp-plugins.org/wiki/wp-pagenavi
http://www.scriptygoddess.com/archives/2005/01/23/wppaginate-for-wp-15/
I think the best option is PageNavi, which is current and well supported. I've not yet seen a method out there for handling post title 'pagination' or alphabetical indexing.
Thx ... 1st plugin found it :)
Ihope some one else can help with 2 ^^
I'm looking for a similar request: I want the same idea as "next_post" and "Previous_post" only in alphabetical order instead of chronological. Here's my thread about it:
http://wordpress.org/support/topic/87573?replies=6
Here's my custom query, used in a Page Template, that shows an index of all the posts in alphabetical order:
<?php query_posts('orderby=title&order=asc&showposts=-1'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php endwhile; ?><?php endif; ?>
Unfortunately I don't know how to use this idea on a Single Post page to put a navigation to the NEXT POST IN ALPHABETICAL ORDER, and the PREVIOUS POST IN (REVERSE) ALPHABETICAL ORDER.
This topic has been closed to new replies.