PHP
<?php
// we add this, to show all posts in our
// Glossary sorted alphabetically
if (is_category('Glossary'))
{
$posts = query_posts($query_string .
'&orderby=title&order=asc&posts_per_page=30');
}
// here comes The Loop!
if (have_posts()) : while (have_posts()) : the_post(); ?>
also das benutze ich um meine kategorien nach alphabet auflisten zu lassen... funktioniert ja schön und gut, nur waere es noch nett dass meine benutzer eine pagebar haetten die nach A-Z klickbar ist und nicht nach seitenzahlen... wie kann ich das realisieren?