What I wanted to make was a page in which you have a list with all your posts, filtered on letter, with on the top shortcuts to the letters.
So like this:
A - b - c - d -... til Z
A:
[all posts which start with an a in a list]
B:
[all posts which start with an b in a list]
etc.
When you press the A on the top: A - b - c. You jump to the part of the page with all posts that start with an A. The same for b.. etc.
I used some html for the shortcuts:
<a href="#a">A</a> - <a href="#b">B</a> - etc..
<h2><a name="a">A</a></h2>
<h2><a name="b">B</a></h2>
etc.
Now I only need to display the posts that start with that letter in a list behind that letter.
So I was thinking, maybe you could make a shortcode for each of the posts that start with a letter. So a shortcode for all posts that start with an a. one for all posts that start with a B. etc.
Has anyone done something similar, or does someone know how to solve this problem?