I'm trying to create directory listing in which at the top there will be links...from a-z some what like this:

A B C D E ...............V W X Y Z

When a user presses on A, all the posts with titles starting with A should come, whats the best approach to achieve this?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Someone asked this on wordpress.org check the link for your answer with sample source.

first-letter-posts

link|improve this answer
feedback

You have to implement an SQL request that would use the "LIKE" filter:

SELECT * from post WHERE post.title LIKE 'A%';

This request will give you all the posts starting with the 'A' letter.

link|improve this answer
Thanks.I knew the SQL request.But wanted the wordpress specific way. – esafwan Sep 26 '10 at 8:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.