sort posts by alphabetic plugin suggestion
Don’t know about a plugin but you can do that easily with query_posts() paste this two functions in your theme’s functions.php file function display_sort_links(){ ?> <div class=”sort_links”> <ul> <li><a href=”https://wordpress.stackexchange.com/questions/20830/?P_O=az”>A – Z</a></li> <li><a href=”?P_O=za”>Z – A</a></li> </ul> </div> <?php } function display_posts_numbers(){ ?> <div class=”number_links”> <ul> <li><a href=”?P_P=20″>20</a></li> <li><a href=”?P_P=40″>40</a></li> <li><a href=”?P_P=60″>60</a></li> <li><a href=”?P_P=-1″>All</a></li> </ul> … Read more