How can I get my "All Web hosting reviews" on the sidebar which came with the theme - not a "custom" widget. alphabetized? Need it in alphabetical order...I might be missing something simple... Any suggestions? Thanks
Your sidebar should be widgetised. Will one of the widgets do the job? At the most basic level there is the text widget which will accept any html
<ul> <?php query_posts('posts_per_page=-1&orderby=title'); ?> <?php while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul> This code in my sidebar.php seemed to alphabetize it, but in reverse order...anyone?
Or <?php query_posts('posts_per_page=-1&orderby=title&order=ASC'); ?> Code (markup): You can read more here http://codex.wordpress.org/Template_Tags/query_posts#Passing_variables_to_query_posts