Is is possible to create an alphabetical search like so:
A | B | C | D | etc
Each letter is a link so when clicked it would show all the posts starting with “A” or “B” etc etc.
If so, how could I do it?
Is is possible to create an alphabetical search like so:
A | B | C | D | etc
Each letter is a link so when clicked it would show all the posts starting with “A” or “B” etc etc.
If so, how could I do it?
You must be logged in to post a comment.
Yes. Do a SQL query for posts using
LIKE 'x%'
, wherex
is your letter.Here’s a simple example: