Thanks to the Wiki : http://expressionengine.com/wiki/Alphabetical_Navigation/
I started out with this which gives me a part of what I need:
{exp:query limit="1" paginate="bottom"
sql="SELECT title, entry_id, url_title, url_title AS urlt
FROM exp_weblog_titles
WHERE weblog_id = '3'
{if segment_3}AND title LIKE '{segment_3}%'{/if}
ORDER BY title ASC"}I can then filter ALL posts by letter (with pagination) like this:
<a href="http://{path=template_group/alpha/a/}">A</a> | <a href="http://{path=template_group/alpha/b/}">B</a> |....❓ What I can’t figure out is how to filter by Category… and then further filter by alphabet.
I can envision an URL like this, but I’m not sure where to start:
site.com/index.php/template_group/template/category/my-category-name/a/P0/Not sure exactly where to start? Another custom query perhaps?