list posts in one category in alphabetical order
-
I am trying to list all posts from one category in the sidebar. What I have below isn’t working for me.
<ul> <?php $temp_query = $wp_query; query_posts("showposts=100&cat=185&sort=post_title&order=ASC"); ?> <?php while (have_posts()) { the_post(); ?> <li><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></li> <?php } $wp_query = $temp_query; ?> </ul>
Any help is greatly appreciated. Thanks!
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘list posts in one category in alphabetical order’ is closed to new replies.