Alphabetical post list
-
Hi There
I’m attempting to list posts alphabetically from a cat page, which I’ve got working using MichaelH’s great piece of code from here:
https://www.ads-software.com/support/topic/first-letter-posts
And using this code above `
$alphabet = range(‘A’, ‘Z’);
foreach ($alphabet as $letter) {
echo ‘<a href=”?letter=’ . $letter . ‘”>’ . $letter . ‘</a>’;
}
$_GET[“letter”];`to output an a-z list which links to the same page telling Michaels code which letter to display.
My question is instead of outputting a full alphabetical list is it possible to list it as such ‘A – I’ ‘J – Q’ ‘R – Z’ ?
Any pointers appreciated.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Alphabetical post list’ is closed to new replies.