Skip to content

Instantly share code, notes, and snippets.

@scisus
Created April 15, 2014 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scisus/10786132 to your computer and use it in GitHub Desktop.
Save scisus/10786132 to your computer and use it in GitHub Desktop.
<ul>
<?php
$archive_posts = new WP_Query('category_name=Biographies&showposts=-1&orderby=name&order=ASC'); while($archive_posts->have_posts()) : $archive_posts->the_post();
?>
<li><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permalink to <?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment