wordpress / php help
wordpress / php help
Out of context: Reply #25
- Started
- Last post
- 30 Responses
- dbloc0
New Question
--------------------------------I am trying to list the posts from category 185 in the sidebar in alphabetical order. Nothing seems to be working for me.
<.ul>
<.?php $temp_query = $wp_query; query_posts("showposts=100&cat=185"); ?>
<.?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>